os/ossrv/lowlevellibsandfws/pluginfw/Framework/EcomTestUtils/t_processfilemanrename.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 renaming of files or folders 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 TInt DoRenameFileL(const TDesC& anOld,const TDesC& aNew)
    26 	{
    27 	TInt r = KErrNone;	
    28 	RFs fs;
    29 	r = fs.Connect();
    30 	if (r != KErrNone)
    31 		{
    32 			User::Leave(r);
    33 		}
    34 	CFileMan* fileMan = CFileMan::NewL(fs);
    35 	CleanupStack::PushL(fileMan); 
    36 	// Ensure the path exists
    37 	TInt err = fs.MkDirAll(aNew);	
    38 	// Make the destination file writeable 
    39     err = fileMan->Attribs(aNew, 0, KEntryAttReadOnly, TTime(0), 0);
    40 	// To process 
    41     err = fileMan->Rename(anOld, aNew);
    42     RDebug::Print(_L("CFileMan Rename file or folder from %S to %S - err = %d\n"), &anOld, &aNew, err);
    43     
    44 	CleanupStack::PopAndDestroy(fileMan); 
    45     fs.Close();
    46 
    47 	return err;
    48 	}
    49 	
    50 // Copy the files specified.  Format of aFileNames is [srcFile]|[dstFile].
    51 static TInt RenameFile(const TDesC& aFileNames)
    52 	{	
    53 	TInt pos = aFileNames.Find(KSeparator);
    54 	TFileName srcFile(aFileNames.Mid(0,pos));
    55 	TFileName dstFile(aFileNames.Mid(pos+1, aFileNames.Length()-(pos+1)));
    56 			
    57 	TRAPD(err,DoRenameFileL(srcFile, dstFile));
    58 	return err;
    59 	}
    60 
    61 
    62 GLDEF_C TInt E32Main()
    63 	{
    64 	CTrapCleanup* cleanup =	CTrapCleanup::New(); 
    65 	
    66 	TBuf<KMaxFileName*2> names;
    67 	User::CommandLine(names);
    68 	TInt err = RenameFile(names);
    69 	delete cleanup;
    70 	return err;
    71 	}