os/ossrv/lowlevellibsandfws/pluginfw/Framework/EcomTestUtils/t_processfilemancopyfile.cpp
First public contribution.
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 files for
23 _LIT(KSeparator, "|"); // Invalid filepath char used to separate filenames
26 // Copy the files specified.
27 void CopyFileL(const TDesC& anOld, const TDesC& aNew)
36 CleanupClosePushL(fs);
38 CFileMan* fileMan = CFileMan::NewL(fs);
39 CleanupStack::PushL(fileMan);
41 // Ensure the path exists
42 TInt err = fs.MkDirAll(aNew);
43 if ((err != KErrNone) && (err != KErrAlreadyExists))
46 // Make the destination file writeable
47 err = fileMan->Attribs(aNew, 0, KEntryAttReadOnly, TTime(0), 0);
48 if ((err != KErrNone) && (err != KErrNotFound))
52 User::LeaveIfError(fileMan->Copy(anOld, aNew));
54 CleanupStack::PopAndDestroy(2);
58 // Format of aFileNames is [srcFile]|[dstFile]
59 GLDEF_C TInt E32Main()
61 CTrapCleanup* cleanup = CTrapCleanup::New();
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)));
70 TRAP(err,CopyFileL(srcFile, dstFile));
72 RDebug::Print(_L("CFileMan Copy file '%S' to '%S' succeeded.\n"), &srcFile, &dstFile);
74 RDebug::Print(_L("CFileMan Copy file '%S' to '%S' failed with error = %d.\n"), &srcFile, &dstFile, err);