除FTP命令外,是否可以使用HTTP来DOWNLOAD,UPLOAD,删除或列出FTPServer中的文件?
答案 0 :(得分:0)
下载:
wget <the url>
上载:
curl -F "file=@localfile;filename=nameinpost" url.com
wget --header="Content-type: multipart/form-data boundary=FILEUPLOAD" --post-file postfile <url with uploadform>
由于您发布了一般性问题,因此请将其作为一般性答案。