Update contrib.
1 // Copyright (c) 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.
20 _LIT(KSeparator, "|"); // Invalid filepath char used to separate filenames
23 // Copy the files specified.
24 void CopyFileL(const TDesC& anOld, const TDesC& aNew)
28 CleanupClosePushL(fs);
30 CFileMan* fileMan = CFileMan::NewL(fs);
31 CleanupStack::PushL(fileMan);
33 // Check if the destination directory exists, if so then delete files if they are present
34 TInt err = fs.MkDirAll(aNew);
35 if (err == KErrAlreadyExists)
37 err = fileMan->Attribs(aNew, 0, KEntryAttReadOnly, TTime(0), 0);
38 if ((err != KErrNone) && (err != KErrNotFound))
42 else if(err == KErrNone)
44 User::LeaveIfError(fs.Delete(aNew));
47 else if (err != KErrNone)
52 // Make the destination file writeable
53 err = fileMan->Attribs(aNew, 0, KEntryAttReadOnly, TTime(0), 0);
54 if ((err != KErrNone) && (err != KErrNotFound))
60 User::LeaveIfError(fileMan->Copy(anOld, aNew));
62 CleanupStack::PopAndDestroy(2);
66 // Format of aFileNames is [srcFile]|[dstFile]
67 GLDEF_C TInt E32Main()
69 CTrapCleanup* cleanup = CTrapCleanup::New();
71 TBuf<KMaxFileName*2> names;
72 User::CommandLine(names);
73 TInt pos = names.Find(KSeparator);
74 TFileName srcFile(names.Mid(0, pos));
75 TFileName dstFile(names.Mid(pos + 1, names.Length() - (pos + 1)));
78 TRAP(err, CopyFileL(srcFile, dstFile));
81 RDebug::Print(_L("CFileMan Copy file '%S' to '%S' succeeded.\n"), &srcFile, &dstFile);
85 RDebug::Print(_L("CFileMan Copy file '%S' to '%S' failed with error = %d.\n"), &srcFile, &dstFile, err);