vscode ftp上传很慢,但是普通ftp软件正常

{
    "name": "网站名字",
    "host": "你的服务器ip",
    "port": 21,
    "username": "",
    "password": "",
    "protocol": "ftp", 
    "agent": null,
    "privateKeyPath": null, 
    "passphrase": null, 
    "passive": false, 
    "interactiveAuth": true,
    "remotePath": "/",
    "uploadOnSave": true,
    "connectTimeout":300,
    "syncMode": "update",
    "ignore": [
        "**/.vscode/**",
        "**/.git/**",
        "**/.DS_Store"
    ],
    "watcher": {
        "files": "glob",
        "autoUpload": true,
        "autoDelete": true
    }
}
 
加上     "connectTimeout":300超时时间 300毫秒,就变快了。。。
原文地址:https://www.cnblogs.com/lvcha/p/13940795.html