os/ossrv/lowlevellibsandfws/pluginfw/Framework/EcomTestUtils/t_processrfsdeletefile.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // Hepler process with high capability to perform deletion of files 
    15 // for using RFs for test harness. 
    16 // 
    17 //
    18 
    19 #include <f32file.h>
    20 #include <e32debug.h>
    21 #include <bautils.h>
    22 	
    23 TInt DoDeleteFileL(const TDesC& aFile)
    24 	{
    25 	TInt r = KErrNone;
    26 	RFs fs;
    27 	r = fs.Connect();
    28 	if (r != KErrNone)
    29 		{
    30 			User::Leave(r);
    31 		}
    32 	
    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);
    38 	
    39     fs.Close();
    40 	return err;
    41 	}
    42 
    43 static TInt DeleteFile(const TDesC& aFile)
    44 	{
    45 	TRAPD(err,DoDeleteFileL(aFile));
    46 	return err;
    47 	}
    48 
    49 GLDEF_C TInt E32Main()
    50 	{
    51 	CTrapCleanup* cleanup =	CTrapCleanup::New(); 
    52 	
    53 	TFileName name;
    54 	User::CommandLine(name);
    55 	TInt err = DeleteFile(name);	
    56 	delete cleanup;
    57 	return err;
    58 	}