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
As the search under windows, I expect the * to match everything in the given path. So if I create a searchPattern like this:
var path = new UPath("/folder1");
var search = "*";
var pattern = SearchPattern.Parse(ref path, ref search);
I wouldn't expect it to match a path not beginning with folder1, like /folder2/test.
Is that intended behaviour or a bug? Because the code states the scenario of having the * as the search pattern as an optimized and most common case. I agree that it is the most common case, but only in combination with the pre-defined path not being ignored.
The text was updated successfully, but these errors were encountered:
As the search under windows, I expect the * to match everything in the given path. So if I create a searchPattern like this:
I wouldn't expect it to match a path not beginning with folder1, like
/folder2/test
.Is that intended behaviour or a bug? Because the code states the scenario of having the * as the search pattern as an optimized and most common case. I agree that it is the most common case, but only in combination with the pre-defined path not being ignored.
The text was updated successfully, but these errors were encountered: