os/ossrv/lowlevellibsandfws/pluginfw/Framework/EcomTestUtils/t_processrloaderdeletefile.cpp
Update contrib.
1 // Copyright (c) 2006-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 // Hepler process with high capability to perform deletion of files for
24 void DeleteFileL(const TDesC& aFile)
28 r = rloader.Connect();
33 CleanupClosePushL(rloader);
35 TInt err = rloader.Delete(aFile);
36 if ((err != KErrNone) && (err != KErrPathNotFound))
39 CleanupStack::PopAndDestroy(1);
43 GLDEF_C TInt E32Main()
45 CTrapCleanup* cleanup = CTrapCleanup::New();
48 User::CommandLine(name);
51 TRAP(err,DeleteFileL(name));
53 RDebug::Print(_L("RLoader Delete file '%S' succeeded.\n"), &name);
55 RDebug::Print(_L("RLoader Delete file '%S' failed with error = %d.\n"), &name, err);