os/ossrv/lowlevellibsandfws/pluginfw/Framework/EcomTestUtils/t_processfilemandeletedir.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/EcomTestUtils/t_processfilemandeletedir.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,63 @@
     1.4 +// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// t_processfilemandeletefile.cpp
    1.18 +// Hepler process with high capability to perform deletion of files for
    1.19 +// test harnesses. 
    1.20 +// 
    1.21 +//
    1.22 +
    1.23 +#include <f32file.h>
    1.24 +#include <e32debug.h>
    1.25 +#include <bautils.h>
    1.26 +
    1.27 +
    1.28 +TInt DoDeleteDirL(const TDesC& aPath)
    1.29 +	{
    1.30 +	TInt r = KErrNone;
    1.31 +	RFs fs;
    1.32 +	r = fs.Connect();
    1.33 +	if (r != KErrNone)
    1.34 +		{
    1.35 +			User::Leave(r);
    1.36 +		}
    1.37 +	CFileMan* fileMan = CFileMan::NewL(fs);
    1.38 +	CleanupStack::PushL(fileMan);
    1.39 +
    1.40 +    // Make the file writeable 
    1.41 +    TInt err = fileMan->Attribs(aPath, 0, KEntryAttReadOnly, TTime(0), 0);
    1.42 +    // Delete file using CFileMan
    1.43 +    err = fileMan->RmDir(aPath);
    1.44 +    RDebug::Print(_L("CFileMan Delete file %S - err = %d\n"), &aPath, err);
    1.45 +    
    1.46 +	CleanupStack::PopAndDestroy(fileMan); 
    1.47 +    fs.Close();
    1.48 +	return err;
    1.49 +	}
    1.50 +	
    1.51 +static TInt DeleteDir(const TDesC& aPath)
    1.52 +	{				
    1.53 +	TRAPD(err,DoDeleteDirL(aPath));
    1.54 +	return err;
    1.55 +	}
    1.56 +
    1.57 +GLDEF_C TInt E32Main()
    1.58 +	{
    1.59 +	CTrapCleanup* cleanup =	CTrapCleanup::New(); 
    1.60 +	
    1.61 +	TFileName name;
    1.62 +	User::CommandLine(name);
    1.63 +	TInt err = DeleteDir(name);	
    1.64 +	delete cleanup;
    1.65 +	return err;
    1.66 +	}