os/ossrv/lowlevellibsandfws/pluginfw/Framework/EcomTestUtils/t_processfilemandeletefile.cpp
Update contrib.
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 // Hepler process with high capability to perform deletion of files for
24 void DeleteFileL(const TDesC& aFile)
33 CleanupClosePushL(fs);
35 CFileMan* fileMan = CFileMan::NewL(fs);
36 CleanupStack::PushL(fileMan);
38 // Make the file writeable and delete it.
39 TInt err = fileMan->Attribs(aFile, 0, KEntryAttReadOnly, TTime(0), 0);
40 if ((err != KErrNone) && (err != KErrNotFound) && (err != KErrPathNotFound))
43 err = fileMan->Delete(aFile);
44 if ((err != KErrNone) && (err != KErrPathNotFound))
47 CleanupStack::PopAndDestroy(2);
50 GLDEF_C TInt E32Main()
52 CTrapCleanup* cleanup = CTrapCleanup::New();
55 User::CommandLine(name);
58 TRAP(err,DeleteFileL(name));
60 RDebug::Print(_L("CFileMan Delete file '%S' succeeded.\n"), &name);
62 RDebug::Print(_L("CFileMan Delete file '%S' failed with error = %d.\n"), &name, err);