os/ossrv/lowlevellibsandfws/pluginfw/Framework/EcomTestUtils/t_makefilewriteable.cpp
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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // t_processdeletefile.cpp
15 // Helper process with high capability to perform file operation for
24 TInt DoMakeFileWriteableL(const TDesC& aFile)
26 // Make sure the file is not read-only
27 RDebug::Print(_L("Open for writing file %S\n"), &aFile);
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);
43 static TInt MakeFileWriteable(const TDesC& aFile)
45 TRAPD(err,DoMakeFileWriteableL(aFile));
49 GLDEF_C TInt E32Main()
51 CTrapCleanup* cleanup = CTrapCleanup::New();
54 User::CommandLine(fileName);
55 TInt err = MakeFileWriteable(fileName);