Read-only archive of the All About Symbian forum (2001–2013) · About this archive

Finding files in \sys\bin

0 replies · 1,773 views · Started 08 September 2006

Hi,

I'm writing a code that need to load DLLS matching a wildcard, but when I use the TFindFile.FindWildByDir it fails with KErrPermissionDenied.

CDir* file_list;
TInt error = file_finder.FindWildByDir("mylib*.dll" , _L("Z:\\sys\\bin"😉, file_list);
User::LeaveIfError(error);

This code works if I put the Dlls in an other folder.

Do you have a solution to work arround this issue ?