lukasz-wronski / vscode-ftp-sync

Ftp Sync plugin for Visual Studio Code
https://marketplace.visualstudio.com/items/lukasz-wronski.ftp-sync
320 stars 85 forks source link

Unsafe untitled:// usage #242

Open bpasero opened 6 years ago

bpasero commented 6 years ago

Looking at: https://github.com/lukasz-wronski/vscode-ftp-sync/blob/14aac8903fa26e1b27b74bd1ebab30842bdaa406/modules/sync-command.js#L16

This will break in VSCode 1.25 on Windows and a better solution is to do this:

let fullPathToFile: string = <some path>;
let filePath: vscode.Uri = vscode.Uri.file(fullPathToFile).with({ scheme: "untitled:"});