CDCPFileSystem::Find uses regexp to perform mask matching globally at the whole path scope. It can result in false matches.
For example path "dir1\dir2\test.exe" will be incorrectly matched with "dir1\*.exe" mask.
In order to fix this mask matching should be happened recursively locally at directory scope.
CDCPFileSystem::Find
uses regexp to perform mask matching globally at the whole path scope. It can result in false matches. For example path "dir1\dir2\test.exe" will be incorrectly matched with "dir1\*.exe" mask.In order to fix this mask matching should be happened recursively locally at directory scope.