os/ossrv/lowlevellibsandfws/pluginfw/Framework/EcomTestUtils/t_processfilemandeletedir.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 // t_processfilemandeletefile.cpp
    15 // Hepler process with high capability to perform deletion of files for
    16 // test harnesses. 
    17 // 
    18 //
    19 
    20 #include <f32file.h>
    21 #include <e32debug.h>
    22 #include <bautils.h>
    23 
    24 
    25 TInt DoDeleteDirL(const TDesC& aPath)
    26 	{
    27 	TInt r = KErrNone;
    28 	RFs fs;
    29 	r = fs.Connect();
    30 	if (r != KErrNone)
    31 		{
    32 			User::Leave(r);
    33 		}
    34 	CFileMan* fileMan = CFileMan::NewL(fs);
    35 	CleanupStack::PushL(fileMan);
    36 
    37     // Make the file writeable 
    38     TInt err = fileMan->Attribs(aPath, 0, KEntryAttReadOnly, TTime(0), 0);
    39     // Delete file using CFileMan
    40     err = fileMan->RmDir(aPath);
    41     RDebug::Print(_L("CFileMan Delete file %S - err = %d\n"), &aPath, err);
    42     
    43 	CleanupStack::PopAndDestroy(fileMan); 
    44     fs.Close();
    45 	return err;
    46 	}
    47 	
    48 static TInt DeleteDir(const TDesC& aPath)
    49 	{				
    50 	TRAPD(err,DoDeleteDirL(aPath));
    51 	return err;
    52 	}
    53 
    54 GLDEF_C TInt E32Main()
    55 	{
    56 	CTrapCleanup* cleanup =	CTrapCleanup::New(); 
    57 	
    58 	TFileName name;
    59 	User::CommandLine(name);
    60 	TInt err = DeleteDir(name);	
    61 	delete cleanup;
    62 	return err;
    63 	}