os/ossrv/lowlevellibsandfws/pluginfw/Framework/EcomTestUtils/t_processrfsreplacefile.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 copying of using Rfs
15 // files for test harness.
23 _LIT(KSeparator, "|"); // Invalid filepath char used to separate filenames
25 TInt DoReplaceFileL(const TDesC& anOld,const TDesC& aNew)
35 // Ensure the path exists
36 TInt err = fs.MkDirAll(aNew);
37 // Make the new file writeable
38 err = fs.SetAtt(aNew, 0, KEntryAttReadOnly);
40 err = fs.Replace(anOld, aNew);
41 RDebug::Print(_L("RFs Replace file %S to %S - err = %d\n"), &anOld, &aNew, err);
48 // Copy the files specified. Format of aFileNames is [srcFile]|[dstFile].
49 static TInt ReplaceFile(const TDesC& aFileNames)
51 TInt pos = aFileNames.Find(KSeparator);
53 TFileName srcFile(aFileNames.Mid(0,pos));
54 TFileName dstFile(aFileNames.Mid(pos+1, aFileNames.Length()-(pos+1)));
56 TRAPD(err,DoReplaceFileL(srcFile, dstFile));
61 GLDEF_C TInt E32Main()
63 CTrapCleanup* cleanup = CTrapCleanup::New();
65 TBuf<KMaxFileName*2> names;
66 User::CommandLine(names);
67 TInt err = ReplaceFile(names);