os/mm/imagingandcamerafws/cameraunittest/src/copyfile/copyfile.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/mm/imagingandcamerafws/cameraunittest/src/copyfile/copyfile.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,90 @@
     1.4 +// Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +#include <e32base.h>
    1.20 +#include <e32std.h>
    1.21 +#include <f32file.h>
    1.22 +
    1.23 +_LIT(KSeparator, "|"); // Invalid filepath char used to separate filenames
    1.24 +
    1.25 +
    1.26 +// Copy the files specified.
    1.27 +void CopyFileL(const TDesC& anOld, const TDesC& aNew)
    1.28 +	{	
    1.29 +	RFs fs;
    1.30 +	fs.Connect();	
    1.31 +	CleanupClosePushL(fs);
    1.32 +
    1.33 +	CFileMan* fileMan = CFileMan::NewL(fs);
    1.34 +	CleanupStack::PushL(fileMan); 
    1.35 +
    1.36 +	// Check if the destination directory exists, if so then delete files if they are present
    1.37 +	TInt err = fs.MkDirAll(aNew);	
    1.38 +	if (err == KErrAlreadyExists)
    1.39 +		{
    1.40 +		err = fileMan->Attribs(aNew, 0, KEntryAttReadOnly, TTime(0), 0);
    1.41 +		if ((err != KErrNone) && (err != KErrNotFound))
    1.42 +			{
    1.43 +			User::Leave(err);
    1.44 +			}
    1.45 +		else if(err == KErrNone)
    1.46 +			{
    1.47 +			User::LeaveIfError(fs.Delete(aNew));
    1.48 +			}
    1.49 +		}
    1.50 +	else if (err != KErrNone)
    1.51 +		{
    1.52 +		User::Leave(err);
    1.53 +		}
    1.54 +
    1.55 +	// Make the destination file writeable 
    1.56 +    err = fileMan->Attribs(aNew, 0, KEntryAttReadOnly, TTime(0), 0);
    1.57 +	if ((err != KErrNone) && (err != KErrNotFound))
    1.58 +		{
    1.59 +		User::Leave(err);
    1.60 +		}
    1.61 +
    1.62 +	// Do the file copy	
    1.63 +    User::LeaveIfError(fileMan->Copy(anOld, aNew));
    1.64 +
    1.65 +	CleanupStack::PopAndDestroy(2); 
    1.66 +	}
    1.67 +
    1.68 +
    1.69 +// Format of aFileNames is [srcFile]|[dstFile]
    1.70 +GLDEF_C TInt E32Main()
    1.71 +	{
    1.72 +	CTrapCleanup* cleanup =	CTrapCleanup::New(); 
    1.73 +
    1.74 +	TBuf<KMaxFileName*2> names;
    1.75 +	User::CommandLine(names);
    1.76 +	TInt pos = names.Find(KSeparator);
    1.77 +	TFileName srcFile(names.Mid(0, pos));
    1.78 +	TFileName dstFile(names.Mid(pos + 1, names.Length() - (pos + 1)));
    1.79 +
    1.80 +	TInt err = KErrNone;
    1.81 +	TRAP(err, CopyFileL(srcFile, dstFile));
    1.82 +	if (err == KErrNone)
    1.83 +		{
    1.84 +   		RDebug::Print(_L("CFileMan Copy file '%S' to '%S' succeeded.\n"), &srcFile, &dstFile);
    1.85 +		}
    1.86 +	else
    1.87 +    	{
    1.88 +    	RDebug::Print(_L("CFileMan Copy file '%S' to '%S' failed with error = %d.\n"), &srcFile, &dstFile, err);
    1.89 +    	}
    1.90 +
    1.91 +	delete cleanup;
    1.92 +	return err;
    1.93 +	}