Open
Description
opened on Jun 22, 2018
This searches for *.ts files and excludes .ts files in the second workspace folder.
vscode.workspace.findFiles('**/*.ts', new vscode.RelativePattern(vscode.workspace.workspaceFolders[1], '**/*.ts')).then(result => {
console.log(result);
});
When I run this, I get 0 results, when it should return results from the first workspace folder.
Seems like it's always been that way. Is that intentional @bpasero? If not I can fix it. We can pass absolute exclude globs to search.
Activity