os/mm/imagingandcamerafws/cameraunittest/src/copyfile/copyfile.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #include <e32base.h>
    17 #include <e32std.h>
    18 #include <f32file.h>
    19 
    20 _LIT(KSeparator, "|"); // Invalid filepath char used to separate filenames
    21 
    22 
    23 // Copy the files specified.
    24 void CopyFileL(const TDesC& anOld, const TDesC& aNew)
    25 	{	
    26 	RFs fs;
    27 	fs.Connect();	
    28 	CleanupClosePushL(fs);
    29 
    30 	CFileMan* fileMan = CFileMan::NewL(fs);
    31 	CleanupStack::PushL(fileMan); 
    32 
    33 	// Check if the destination directory exists, if so then delete files if they are present
    34 	TInt err = fs.MkDirAll(aNew);	
    35 	if (err == KErrAlreadyExists)
    36 		{
    37 		err = fileMan->Attribs(aNew, 0, KEntryAttReadOnly, TTime(0), 0);
    38 		if ((err != KErrNone) && (err != KErrNotFound))
    39 			{
    40 			User::Leave(err);
    41 			}
    42 		else if(err == KErrNone)
    43 			{
    44 			User::LeaveIfError(fs.Delete(aNew));
    45 			}
    46 		}
    47 	else if (err != KErrNone)
    48 		{
    49 		User::Leave(err);
    50 		}
    51 
    52 	// Make the destination file writeable 
    53     err = fileMan->Attribs(aNew, 0, KEntryAttReadOnly, TTime(0), 0);
    54 	if ((err != KErrNone) && (err != KErrNotFound))
    55 		{
    56 		User::Leave(err);
    57 		}
    58 
    59 	// Do the file copy	
    60     User::LeaveIfError(fileMan->Copy(anOld, aNew));
    61 
    62 	CleanupStack::PopAndDestroy(2); 
    63 	}
    64 
    65 
    66 // Format of aFileNames is [srcFile]|[dstFile]
    67 GLDEF_C TInt E32Main()
    68 	{
    69 	CTrapCleanup* cleanup =	CTrapCleanup::New(); 
    70 
    71 	TBuf<KMaxFileName*2> names;
    72 	User::CommandLine(names);
    73 	TInt pos = names.Find(KSeparator);
    74 	TFileName srcFile(names.Mid(0, pos));
    75 	TFileName dstFile(names.Mid(pos + 1, names.Length() - (pos + 1)));
    76 
    77 	TInt err = KErrNone;
    78 	TRAP(err, CopyFileL(srcFile, dstFile));
    79 	if (err == KErrNone)
    80 		{
    81    		RDebug::Print(_L("CFileMan Copy file '%S' to '%S' succeeded.\n"), &srcFile, &dstFile);
    82 		}
    83 	else
    84     	{
    85     	RDebug::Print(_L("CFileMan Copy file '%S' to '%S' failed with error = %d.\n"), &srcFile, &dstFile, err);
    86     	}
    87 
    88 	delete cleanup;
    89 	return err;
    90 	}