os/ossrv/lowlevellibsandfws/pluginfw/Framework/EcomTestUtils/t_processfilemandeletedir.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 // t_processfilemandeletefile.cpp
15 // Hepler process with high capability to perform deletion of files for
25 TInt DoDeleteDirL(const TDesC& aPath)
34 CFileMan* fileMan = CFileMan::NewL(fs);
35 CleanupStack::PushL(fileMan);
37 // Make the file writeable
38 TInt err = fileMan->Attribs(aPath, 0, KEntryAttReadOnly, TTime(0), 0);
39 // Delete file using CFileMan
40 err = fileMan->RmDir(aPath);
41 RDebug::Print(_L("CFileMan Delete file %S - err = %d\n"), &aPath, err);
43 CleanupStack::PopAndDestroy(fileMan);
48 static TInt DeleteDir(const TDesC& aPath)
50 TRAPD(err,DoDeleteDirL(aPath));
54 GLDEF_C TInt E32Main()
56 CTrapCleanup* cleanup = CTrapCleanup::New();
59 User::CommandLine(name);
60 TInt err = DeleteDir(name);