1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/syslibsapitest/syslibssvs/common/src/TPCopyFileUtility.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,75 @@
1.4 +/*
1.5 +* Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
1.6 +* All rights reserved.
1.7 +* This component and the accompanying materials are made available
1.8 +* under the terms of "Eclipse Public License v1.0"
1.9 +* which accompanies this distribution, and is available
1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.11 +*
1.12 +* Initial Contributors:
1.13 +* Nokia Corporation - initial contribution.
1.14 +*
1.15 +* Contributors:
1.16 +*
1.17 +* Description:
1.18 +*
1.19 +*/
1.20 +
1.21 +
1.22 +
1.23 +#include <f32file.h>
1.24 +#include <e32debug.h>
1.25 +
1.26 +
1.27 +_LIT(KSeparator, "|"); // Invalid filepath char used to separate filenames
1.28 +
1.29 +TInt DoCopyFileL(const TDesC& aOld,const TDesC& aNew)
1.30 + {
1.31 + RFs fs;
1.32 + User::LeaveIfError(fs.Connect());
1.33 + CleanupClosePushL(fs);
1.34 + CFileMan* fileMan = CFileMan::NewL(fs);
1.35 + CleanupStack::PushL(fileMan);
1.36 +
1.37 + // Ensure the path exists
1.38 + TInt err = fs.MkDirAll(aNew);
1.39 +
1.40 + // Make the destination file writeable
1.41 + err = fileMan->Attribs(aNew, 0, KEntryAttReadOnly, TTime(0), 0);
1.42 +
1.43 + // To process
1.44 + err = fileMan->Copy(aOld, aNew, CFileMan::EOverWrite);
1.45 + RDebug::Print(_L("CFileMan Copy file %S to %S - err = %d\n"), &aOld, &aNew, err);
1.46 +
1.47 + CleanupStack::PopAndDestroy(2, &fs);
1.48 +
1.49 + return err;
1.50 + }
1.51 +
1.52 +// Copy the files specified. Format of aFileNames is [srcFile]|[dstFile].
1.53 +static TInt CopyFile(const TDesC& aFileNames)
1.54 + {
1.55 + TInt pos = aFileNames.Find(KSeparator);
1.56 + TFileName srcFile(aFileNames.Mid(0,pos));
1.57 + TFileName dstFile(aFileNames.Mid(pos+1, aFileNames.Length()-(pos+1)));
1.58 +
1.59 + srcFile.TrimLeft();
1.60 + srcFile.TrimRight();
1.61 + dstFile.TrimLeft();
1.62 + dstFile.TrimRight();
1.63 +
1.64 + TRAPD(err,DoCopyFileL(srcFile, dstFile));
1.65 + return err;
1.66 + }
1.67 +
1.68 +
1.69 +GLDEF_C TInt E32Main()
1.70 + {
1.71 + CTrapCleanup* cleanup = CTrapCleanup::New();
1.72 +
1.73 + TBuf<KMaxFileName*2> names;
1.74 + User::CommandLine(names);
1.75 + TInt err = CopyFile(names);
1.76 + delete cleanup;
1.77 + return err;
1.78 + }