How to use ftp.simple in VSCode

前端 未结 3 1565
情话喂你
情话喂你 2020-12-11 05:22

I have installed ftp.simple, watched the YouTube video, created a SFTP config for a remote server in the ftp-simple-temp-json, and run the command: Open the file directly fr

3条回答
  •  时光说笑
    2020-12-11 05:59

    after installing ftp-simple from extensions

    1- check your internet connection.

    2- restart VS CODE.

    3- cmd + shift + p --> type: ftp-simple:Config --> Enter

    4- you can see ftp-simple-temp.json file change it like so

    [
        {
            "name": "Sample-Name",
            "host": "Sample-Host",
            "port": 21,
            "type": "ftp",
            "username": "Your FTP USERNAME",
            "password": "Your FTP PASSWORD",
            "path": "/",
            "autosave": true,
            "confirm": true
        }
    ]
    

    ---> save then hit enter.

    5- a little bar at the top of the window shows up with "Sample-Name" given above --> hit enter

    6- wait a moment (depending on your internet connection speed) then another little bar pops up with a directory of your FTP server and just hit enter to see the entire project folder.

    you should be fine...

提交回复
热议问题