sl@0: // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // Hepler process with high capability to perform deletion of files sl@0: // for using RFs for test harness. sl@0: // sl@0: // sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: TInt DoDeleteFileL(const TDesC& aFile) sl@0: { sl@0: TInt r = KErrNone; sl@0: RFs fs; sl@0: r = fs.Connect(); sl@0: if (r != KErrNone) sl@0: { sl@0: User::Leave(r); sl@0: } sl@0: sl@0: // Make the file writeable sl@0: fs.SetAtt(aFile, 0, KEntryAttReadOnly); sl@0: // Delete file using RFs sl@0: TInt err = fs.Delete(aFile); sl@0: RDebug::Print(_L("RFs Delete file %S - err = %d\n"), &aFile, err); sl@0: sl@0: fs.Close(); sl@0: return err; sl@0: } sl@0: sl@0: static TInt DeleteFile(const TDesC& aFile) sl@0: { sl@0: TRAPD(err,DoDeleteFileL(aFile)); sl@0: return err; sl@0: } sl@0: sl@0: GLDEF_C TInt E32Main() sl@0: { sl@0: CTrapCleanup* cleanup = CTrapCleanup::New(); sl@0: sl@0: TFileName name; sl@0: User::CommandLine(name); sl@0: TInt err = DeleteFile(name); sl@0: delete cleanup; sl@0: return err; sl@0: }