문제

Other than FTP command, is it possible to use HTTP to DOWNLOAD, UPLOAD, Delete or list the file from FTPServer?

도움이 되었습니까?

해결책

download:

wget <the url>

Upload:

curl -F "file=@localfile;filename=nameinpost" url.com
wget --header="Content-type: multipart/form-data boundary=FILEUPLOAD" --post-file postfile <url with uploadform>

Since you have posted a generic question so please take it as generic answer.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top