We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e578a7c commit 7764da6Copy full SHA for 7764da6
src/providers/FileSystemProvider/FileSystemProvider.ts
@@ -442,7 +442,7 @@ export class FileSystemProvider implements vscode.FileSystemProvider {
442
if (fileName.startsWith(".")) {
443
return;
444
}
445
- if (!fileName.includes(".")) {
+ if (await this._lookup(uri).then((entry) => entry instanceof Directory)) {
446
// Get the list of documents to delete
447
let toDeletePromise: Promise<any>;
448
if (project) {
0 commit comments