os/ossrv/lowlevellibsandfws/pluginfw/Framework/EcomTestUtils/t_processfilemancopyfile.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2004-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 // Helper process with high capability to perform copying of files for
    15 // test harnesses. 
    16 // 
    17 //
    18 
    19 #include <f32file.h>
    20 #include <e32debug.h>
    21 
    22 
    23 _LIT(KSeparator, "|"); // Invalid filepath char used to separate filenames
    24 
    25 
    26 // Copy the files specified.
    27 void CopyFileL(const TDesC& anOld, const TDesC& aNew)
    28 	{	
    29 	TInt r = KErrNone;
    30 	RFs fs;
    31 	r = fs.Connect();
    32 	if (r != KErrNone)
    33 		{
    34 			User::Leave(r);
    35 		}	
    36 	CleanupClosePushL(fs);
    37 
    38 	CFileMan* fileMan = CFileMan::NewL(fs);
    39 	CleanupStack::PushL(fileMan); 
    40 	
    41 	// Ensure the path exists
    42 	TInt err = fs.MkDirAll(aNew);	
    43 	if ((err != KErrNone) && (err != KErrAlreadyExists))
    44 		User::Leave(err);
    45 	
    46 	// Make the destination file writeable 
    47     err = fileMan->Attribs(aNew, 0, KEntryAttReadOnly, TTime(0), 0);
    48 	if ((err != KErrNone) && (err != KErrNotFound))
    49 		User::Leave(err);
    50 
    51 	// Do the file copy	
    52     User::LeaveIfError(fileMan->Copy(anOld, aNew));
    53     
    54 	CleanupStack::PopAndDestroy(2); 
    55 	}
    56 
    57 
    58 // Format of aFileNames is [srcFile]|[dstFile]
    59 GLDEF_C TInt E32Main()
    60 	{
    61 	CTrapCleanup* cleanup =	CTrapCleanup::New(); 
    62 	
    63 	TBuf<KMaxFileName*2> names;
    64 	User::CommandLine(names);
    65 	TInt pos = names.Find(KSeparator);
    66 	TFileName srcFile(names.Mid(0,pos));
    67 	TFileName dstFile(names.Mid(pos+1, names.Length()-(pos+1)));
    68 			
    69 	TInt err = KErrNone;	
    70 	TRAP(err,CopyFileL(srcFile, dstFile));
    71 	if (err == KErrNone)
    72    		RDebug::Print(_L("CFileMan Copy file '%S' to '%S' succeeded.\n"), &srcFile, &dstFile);
    73 	else
    74     	RDebug::Print(_L("CFileMan Copy file '%S' to '%S' failed with error = %d.\n"), &srcFile, &dstFile, err);
    75 	
    76 	delete cleanup;
    77 	return err;
    78 	}