os/ossrv/lowlevellibsandfws/pluginfw/Framework/EcomTestUtils/t_makefilewriteable.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_processdeletefile.cpp
    15 // Helper process with high capability to perform file operation for
    16 // test harnesses. 
    17 // 
    18 //
    19 
    20 #include <f32file.h>
    21 #include <e32debug.h>
    22 
    23 
    24 TInt DoMakeFileWriteableL(const TDesC& aFile)
    25 	{
    26 	// Make sure the file is not read-only
    27 	RDebug::Print(_L("Open for writing file %S\n"), &aFile);				
    28 	TInt r = KErrNone;
    29 	RFs fs;
    30 	r = fs.Connect();
    31 	if (r != KErrNone)
    32 		{
    33 			User::Leave(r);
    34 		}
    35 	CFileMan* fileMan = CFileMan::NewL(fs);
    36 	CleanupStack::PushL(fileMan);
    37 	TInt err = fileMan->Attribs(aFile, 0, KEntryAttReadOnly, TTime(0), 0);
    38 	CleanupStack::PopAndDestroy(fileMan);
    39 	fs.Close();
    40 	return err;
    41 	}
    42 	
    43 static TInt MakeFileWriteable(const TDesC& aFile)
    44 	{	
    45 	TRAPD(err,DoMakeFileWriteableL(aFile));
    46 	return err;
    47 	}
    48 
    49 GLDEF_C TInt E32Main()
    50 	{
    51 	CTrapCleanup* cleanup =	CTrapCleanup::New(); 
    52 	
    53 	TFileName fileName;
    54 	User::CommandLine(fileName);
    55 	TInt err = MakeFileWriteable(fileName);	
    56 	delete cleanup;
    57 	return err;
    58 	}