vscode-remote-workspace icon indicating copy to clipboard operation
vscode-remote-workspace copied to clipboard

Cannot resolve workspace folder

Open ghost opened this issue 5 years ago • 4 comments

Tried with &legacy=1, not work too. Data I use to login, works for example in Filezilla. So it's not problem with my config I guess.

Basically it shows "Cannot resolve workspace folder"

{
	"folders": [
		{
			"uri": "ftp://xyz:password@host/?debug=1",
			"name": "temp"
		}
	],
	"settings": {}
}

ghost avatar Jul 27 '18 12:07 ghost

@Kamil93

You can only use the parameters, as described here. Parameters of other protocols do not work (e.g. debug is not supported for ftp)!

Have you tried something like

{
	"folders": [
		{
			"uri": "ftps://xyz:password@host/?secure=0",
			"name": "temp"
		}
	],
	"settings": {}
}

that (ftps instead of ftp)?

What do your logs say (<USER-HOME-DIR>/.vscode-remote-workspace/.logs)?

mkloubert avatar Jul 27 '18 16:07 mkloubert

Hi, same problem for me ;(

"folders": [
    {
      "uri": "sftp://[email protected]/home?debug=1&key=id_rsa",
      "name": "My SFTP folder"
    }
  ],

The logs are empty ... Any help is greatly appreciated. Thanks!

tomitrescak avatar Oct 30 '18 00:10 tomitrescak

same issue here

MarianBe avatar Nov 16 '18 10:11 MarianBe

Removing debug=1 fixed for me with SFTP thanks!

K-Kit avatar Jan 10 '19 19:01 K-Kit