os/ossrv/lowlevellibsandfws/pluginfw/Framework/EcomTestUtils/t_processrfsdeletefile.cpp
First public contribution.
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
15 // for using RFs for test harness.
23 TInt DoDeleteFileL(const TDesC& aFile)
33 // Make the file writeable
34 fs.SetAtt(aFile, 0, KEntryAttReadOnly);
35 // Delete file using RFs
36 TInt err = fs.Delete(aFile);
37 RDebug::Print(_L("RFs Delete file %S - err = %d\n"), &aFile, err);
43 static TInt DeleteFile(const TDesC& aFile)
45 TRAPD(err,DoDeleteFileL(aFile));
49 GLDEF_C TInt E32Main()
51 CTrapCleanup* cleanup = CTrapCleanup::New();
54 User::CommandLine(name);
55 TInt err = DeleteFile(name);