lowlevellibsandfws/pluginfw/Framework/EcomTestUtils/t_processfilemandeletedir.cpp
changeset 44 97b0fb8a2cc2
parent 0 e4d67989cc36
child 57 2efc27d87e1c
equal deleted inserted replaced
22:ddc455616bd6 44:97b0fb8a2cc2
    22 #include <bautils.h>
    22 #include <bautils.h>
    23 
    23 
    24 
    24 
    25 TInt DoDeleteDirL(const TDesC& aPath)
    25 TInt DoDeleteDirL(const TDesC& aPath)
    26 	{
    26 	{
       
    27 	TInt r = KErrNone;
    27 	RFs fs;
    28 	RFs fs;
    28 	fs.Connect();
    29 	r = fs.Connect();
       
    30 	if (r != KErrNone)
       
    31 		{
       
    32 			User::Leave(r);
       
    33 		}
    29 	CFileMan* fileMan = CFileMan::NewL(fs);
    34 	CFileMan* fileMan = CFileMan::NewL(fs);
    30 	CleanupStack::PushL(fileMan);
    35 	CleanupStack::PushL(fileMan);
    31 
    36 
    32     // Make the file writeable 
    37     // Make the file writeable 
    33     TInt err = fileMan->Attribs(aPath, 0, KEntryAttReadOnly, TTime(0), 0);
    38     TInt err = fileMan->Attribs(aPath, 0, KEntryAttReadOnly, TTime(0), 0);