You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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::Finduses 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.