First public contribution.
2 * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
24 TInt DoDeleteFileL(const TDesC& aFileName)
27 User::LeaveIfError(fs.Connect());
28 CleanupClosePushL(fs);
29 CFileMan* fileMan = CFileMan::NewL(fs);
30 CleanupStack::PushL(fileMan);
32 // Make the destination file writeable
33 TInt err = fileMan->Attribs(aFileName, 0, KEntryAttReadOnly, TTime(0), 0);
36 err = fileMan->Delete(aFileName);
37 RDebug::Print(_L("CFileMan Delete file %S - err = %d\n"), &aFileName, err);
39 CleanupStack::PopAndDestroy(2, &fs);
44 // Delete the file specified.
45 static TInt DeleteFile(const TDesC& aFileName)
47 TFileName fileName(aFileName);
52 TRAPD(err,DoDeleteFileL(fileName));
57 GLDEF_C TInt E32Main()
59 CTrapCleanup* cleanup = CTrapCleanup::New();
61 TBuf<KMaxFileName> name;
62 User::CommandLine(name);
63 TInt err = DeleteFile(name);