saravana raj
07-09-2008, 08:51 AM
HI,
Using Windows mobile File explorer (fexplore.exe), I am unable to
delete/move/remove a file/folder which was created through fexplore.exe.
It always says that "cannot remove folder "testdir": Access is denied
Be certain that the folder is not write protected and is not
currently in use"
I see that the below code, compiled as pocket PC executable works fine.
DWORD err = 0;
if (CreateDirectory(L"testdir", NULL) == 0)
{
err = GetLastError();
}
if (RemoveDirectory(L"testdir") == 0)
{
err = GetLastError();
}
return err;
It create the folder and also removes the same. With my application, I
am able to remove the existing folders/folders created using the
fexplore.exe
Is there any metabase setting for the fexplore.exe?
Can we log the fexplore.exe events?
Is there any registry setting for fexplore.exe?
Thanks,
Saravana
Using Windows mobile File explorer (fexplore.exe), I am unable to
delete/move/remove a file/folder which was created through fexplore.exe.
It always says that "cannot remove folder "testdir": Access is denied
Be certain that the folder is not write protected and is not
currently in use"
I see that the below code, compiled as pocket PC executable works fine.
DWORD err = 0;
if (CreateDirectory(L"testdir", NULL) == 0)
{
err = GetLastError();
}
if (RemoveDirectory(L"testdir") == 0)
{
err = GetLastError();
}
return err;
It create the folder and also removes the same. With my application, I
am able to remove the existing folders/folders created using the
fexplore.exe
Is there any metabase setting for the fexplore.exe?
Can we log the fexplore.exe events?
Is there any registry setting for fexplore.exe?
Thanks,
Saravana