os/ossrv/lowlevellibsandfws/pluginfw/Framework/EcomTestUtils/t_processfilemanrename.cpp
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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Helper process with high capability to perform renaming of files or folders for
23 _LIT(KSeparator, "|"); // Invalid filepath char used to separate filenames
25 TInt DoRenameFileL(const TDesC& anOld,const TDesC& aNew)
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);
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);
44 CleanupStack::PopAndDestroy(fileMan);
50 // Copy the files specified. Format of aFileNames is [srcFile]|[dstFile].
51 static TInt RenameFile(const TDesC& aFileNames)
53 TInt pos = aFileNames.Find(KSeparator);
54 TFileName srcFile(aFileNames.Mid(0,pos));
55 TFileName dstFile(aFileNames.Mid(pos+1, aFileNames.Length()-(pos+1)));
57 TRAPD(err,DoRenameFileL(srcFile, dstFile));
62 GLDEF_C TInt E32Main()
64 CTrapCleanup* cleanup = CTrapCleanup::New();
66 TBuf<KMaxFileName*2> names;
67 User::CommandLine(names);
68 TInt err = RenameFile(names);