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 ?