How to use ftp.simple in VSCode

前端 未结 3 1587
情话喂你
情话喂你 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 06:21

    1. Press F1, in the input type ftp-simple
    2. Click on the ftp-simple:Config then a file will be open
    3. fill the file with true information like below and save it:
        {
            "name": "any given name",
            "host": "given ftp address",
            "port": 21,
            "type": "ftp",
            "username": "given username",
            "password": "given password",
            "path": "/",
            "autosave": true,
            "confirm": true
        }
    
    1. Press F1 again and type ftp-simple and click on ftp-simple:Open then your chosen name in a little bar will be show up on top
    2. click on chosen name on the top bar and go to directory you want
    3. if after doing this nothing happened or in the 4th step nothing show up to you then go to log file directory: a address like below

    C:\Users\username\AppData\Roaming\Code\logs

    and find out what is the problem.

提交回复
热议问题