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
{{ message }}
This repository was archived by the owner on Nov 6, 2018. It is now read-only.
var m = new Matcher();
m.AddInclude(@"**/*.*");
var res = m.Execute(new DirectoryInfoWrapper(new DirectoryInfo(root)));
As shown below, the Stems for files in sub2 and sub3 are wrong.
When I use a glob pattern starting with subfolder (see below) instead of the wildcards, all stems are correct:
var m = new Matcher();
m.AddInclude(@"subfolder/**/*.*");
var res = m.Execute(new DirectoryInfoWrapper(new DirectoryInfo(root)));
Update: Apparently the problem is not the glob pattern at the beginning. I inserted a folder under subfolder. When I now use the above pattern ("subfolder/**/*.*") I also get wrong stems.