Update contrib.
2 * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
24 _LIT(KSeparator, "|"); // Invalid filepath char used to separate filenames
26 TInt DoCopyFileL(const TDesC& aOld,const TDesC& aNew)
29 User::LeaveIfError(fs.Connect());
30 CleanupClosePushL(fs);
31 CFileMan* fileMan = CFileMan::NewL(fs);
32 CleanupStack::PushL(fileMan);
34 // Ensure the path exists
35 TInt err = fs.MkDirAll(aNew);
37 // Make the destination file writeable
38 err = fileMan->Attribs(aNew, 0, KEntryAttReadOnly, TTime(0), 0);
41 err = fileMan->Copy(aOld, aNew, CFileMan::EOverWrite);
42 RDebug::Print(_L("CFileMan Copy file %S to %S - err = %d\n"), &aOld, &aNew, err);
44 CleanupStack::PopAndDestroy(2, &fs);
49 // Copy the files specified. Format of aFileNames is [srcFile]|[dstFile].
50 static TInt CopyFile(const TDesC& aFileNames)
52 TInt pos = aFileNames.Find(KSeparator);
53 TFileName srcFile(aFileNames.Mid(0,pos));
54 TFileName dstFile(aFileNames.Mid(pos+1, aFileNames.Length()-(pos+1)));
61 TRAPD(err,DoCopyFileL(srcFile, dstFile));
66 GLDEF_C TInt E32Main()
68 CTrapCleanup* cleanup = CTrapCleanup::New();
70 TBuf<KMaxFileName*2> names;
71 User::CommandLine(names);
72 TInt err = CopyFile(names);