Aşağıdaki adrese girip eklentiyi yüklüyoruz.
https://marketplace.visualstudio.com/items?itemName=liximomo.remotefs
Daha sonra VS Code’u açıyoruz ve File > Preferences > Settings’e giriyoruz. Arama alanına “remotefs.remote” yazıp “Edit in settings.json” ayar dosyasını açıyoruz. Aşağıdaki bilgileri girip kaydediyoruz.
{ "remotefs.remote": { "site_adi_1": { "scheme" : "ftp", // string - sftp or ftp "host" : "", // string - Hostname or IP address of the server "port" : 21, // integer - Port Numarası "username" : "", // string -FTP Kullanıcı Adı "password" : "", // string - FTP Şifresi "rootPath" : "/", // string - An absolute path on remote "connectTimeout": 10000, // integer - How long (in milliseconds) to wait for the connect to complete. }, "site_adi_2": { "scheme" : "ftp", // string - sftp or ftp "host" : "", // string - Hostname or IP address of the server "port" : 21, // integer - Port Numarası "username" : "", // string -FTP Kullanıcı Adı "password" : "", // string - FTP Şifresi "rootPath" : "/", // string - An absolute path on remote "connectTimeout": 10000, // integer - How long (in milliseconds) to wait for the connect to complete. }, "site_adi_3": { "scheme" : "ftp", // string - sftp or ftp "host" : "", // string - Hostname or IP address of the server "port" : 21, // integer - Port Numarası "username" : "", // string -FTP Kullanıcı Adı "password" : "", // string - FTP Şifresi "rootPath" : "/", // string - An absolute path on remote "connectTimeout": 10000, // integer - How long (in milliseconds) to wait for the connect to complete. }, } }
Son olarak Ctrl+Shift+P
kombinasyonunu tıklayıp açılan kutuya “Remote FS: Add Folder to Workspace
” yazıp istediğimiz klasörü Workspace’e ekliyoruz. Hepsi bu kadar.