We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I've created a FileSystemWatcher for two files in the following manner:
const MTA_YAML = "mta.yaml"; const DEV_MTA_EXT = "dev.mtaext"; const fileSystemWatcher = workspace.createFileSystemWatcher( `**/{${MTA_YAML},${DEV_MTA_EXT}}` ); fileSystemWatcher.onDidDelete( (uri) => { console.log("*********File deleted: " + uri.fsPath); }, undefined, disposables );
When I delete a folder that contains the watched files, the onDidDelete() is not triggered.
Please note
rm -rf <folder name>
The text was updated successfully, but these errors were encountered:
Probably due to Axosoft/nsfw#60
Sorry, something went wrong.
No branches or pull requests
I've created a FileSystemWatcher for two files in the following manner:
When I delete a folder that contains the watched files, the onDidDelete() is not triggered.
Please note
rm -rf <folder name>
, the onDidDelete() does get triggeredSteps to Reproduce:
The text was updated successfully, but these errors were encountered: