os/ossrv/lowlevellibsandfws/pluginfw/Framework/EcomTestUtils/t_processrloaderdeletefile.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2006-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 for
    15 // test harnesses. 
    16 // 
    17 //
    18 
    19 #include <f32file.h>
    20 #include <e32debug.h>
    21 #include <bautils.h>
    22 
    23 
    24 void DeleteFileL(const TDesC& aFile)
    25 	{
    26 	TInt r = KErrNone;
    27 	RLoader rloader;
    28 	r = rloader.Connect();
    29 	if (r != KErrNone)
    30 		{
    31 			User::Leave(r);
    32 		}
    33 	CleanupClosePushL(rloader);
    34   
    35     TInt err = rloader.Delete(aFile);
    36     if ((err != KErrNone) && (err != KErrPathNotFound))
    37         User::Leave(err);
    38     
    39 	CleanupStack::PopAndDestroy(1); 
    40 	rloader.Close();
    41 	}
    42 	
    43 GLDEF_C TInt E32Main()
    44 	{
    45 	CTrapCleanup* cleanup =	CTrapCleanup::New(); 
    46 	
    47 	TFileName name;
    48 	User::CommandLine(name);
    49 
    50 	TInt err = KErrNone;	
    51 	TRAP(err,DeleteFileL(name));
    52 	if (err == KErrNone)
    53    		RDebug::Print(_L("RLoader Delete file '%S' succeeded.\n"), &name);
    54 	else
    55     	RDebug::Print(_L("RLoader Delete file '%S' failed with error = %d.\n"), &name, err);
    56 	
    57 	delete cleanup;
    58 	return err;
    59 	}