diff --git a/src/sql/workbench/common/workspaceActions.ts b/src/sql/workbench/common/workspaceActions.ts index 840feae7f5..1731e0bfdb 100644 --- a/src/sql/workbench/common/workspaceActions.ts +++ b/src/sql/workbench/common/workspaceActions.ts @@ -14,7 +14,7 @@ export class ShowFileInFolderAction extends Action { } run(): Promise { - return this.windowsService.showItemInFolder(URI.parse(this.path)); + return this.windowsService.showItemInFolder(URI.file(this.path)); } }