From 08f47e7e14f82505df55b7c996986f42a7eaa034 Mon Sep 17 00:00:00 2001 From: Charles Gagnon Date: Tue, 30 Apr 2019 10:41:19 -0700 Subject: [PATCH] Fix "Open File Location" for CSV Export (#5273) Fix #5177 - File path wasn't being parsed correctly, URI.file should be used for full file paths. --- src/sql/workbench/common/workspaceActions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); } }