tailscale-dev / vscode-tailscale

VS Code extension for Tailscale
BSD 3-Clause "New" or "Revised" License
67 stars 4 forks source link

File Explorer: Fix issue with spaces in filenames #277

Closed tylersmalley closed 1 year ago

tylersmalley commented 1 year ago

We were escaping spaces while using that value directly in SFTP calls. This caused the escape character (\) to be included in the file/directory name. Additionally, if a space was included it would not be able to be deleted as it would issue the delete call to include the escape character.

Closes #231