os/ossrv/lowlevellibsandfws/pluginfw/Framework/EcomTestUtils/t_processfilemandeletefile.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 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 	RFs fs;
    28 	r = fs.Connect();
    29 	if (r != KErrNone)
    30 		{
    31 			User::Leave(r);
    32 		}
    33 	CleanupClosePushL(fs);
    34 	
    35 	CFileMan* fileMan = CFileMan::NewL(fs);
    36 	CleanupStack::PushL(fileMan);
    37 
    38     // Make the file writeable and delete it.
    39     TInt err = fileMan->Attribs(aFile, 0, KEntryAttReadOnly, TTime(0), 0);
    40 	if ((err != KErrNone) && (err != KErrNotFound) && (err != KErrPathNotFound))
    41 		User::Leave(err);
    42   
    43     err = fileMan->Delete(aFile);
    44     if ((err != KErrNone) && (err != KErrPathNotFound))
    45         User::Leave(err);
    46         
    47 	CleanupStack::PopAndDestroy(2); 
    48 	}
    49 	
    50 GLDEF_C TInt E32Main()
    51 	{
    52 	CTrapCleanup* cleanup =	CTrapCleanup::New(); 
    53 	
    54 	TFileName name;
    55 	User::CommandLine(name);
    56 
    57 	TInt err = KErrNone;	
    58 	TRAP(err,DeleteFileL(name));
    59 	if (err == KErrNone)
    60    		RDebug::Print(_L("CFileMan Delete file '%S' succeeded.\n"), &name);
    61 	else
    62     	RDebug::Print(_L("CFileMan Delete file '%S' failed with error = %d.\n"), &name, err);
    63 	
    64 	delete cleanup;
    65 	return err;
    66 	}