os/ossrv/lowlevellibsandfws/pluginfw/Framework/EcomTestUtils/t_processrfsdeletefile.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_processrfsdeletefile.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,58 @@
     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 +// Hepler process with high capability to perform deletion of files 
    1.18 +// for using RFs for test harness. 
    1.19 +// 
    1.20 +//
    1.21 +
    1.22 +#include <f32file.h>
    1.23 +#include <e32debug.h>
    1.24 +#include <bautils.h>
    1.25 +	
    1.26 +TInt DoDeleteFileL(const TDesC& aFile)
    1.27 +	{
    1.28 +	TInt r = KErrNone;
    1.29 +	RFs fs;
    1.30 +	r = fs.Connect();
    1.31 +	if (r != KErrNone)
    1.32 +		{
    1.33 +			User::Leave(r);
    1.34 +		}
    1.35 +	
    1.36 +    // Make the file writeable 
    1.37 +    fs.SetAtt(aFile, 0, KEntryAttReadOnly);
    1.38 +	// Delete file using RFs
    1.39 +	TInt err = fs.Delete(aFile);
    1.40 +	RDebug::Print(_L("RFs Delete file %S - err = %d\n"), &aFile, err);
    1.41 +	
    1.42 +    fs.Close();
    1.43 +	return err;
    1.44 +	}
    1.45 +
    1.46 +static TInt DeleteFile(const TDesC& aFile)
    1.47 +	{
    1.48 +	TRAPD(err,DoDeleteFileL(aFile));
    1.49 +	return err;
    1.50 +	}
    1.51 +
    1.52 +GLDEF_C TInt E32Main()
    1.53 +	{
    1.54 +	CTrapCleanup* cleanup =	CTrapCleanup::New(); 
    1.55 +	
    1.56 +	TFileName name;
    1.57 +	User::CommandLine(name);
    1.58 +	TInt err = DeleteFile(name);	
    1.59 +	delete cleanup;
    1.60 +	return err;
    1.61 +	}