其他分享
首页 > 其他分享> > vscode ftp上传很慢,但是普通ftp软件正常

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毫秒,就变快了。。。

标签:ftp,connectTimeout,vscode,上传,300,null,true
来源: https://www.cnblogs.com/lvcha/p/13940795.html