Frage

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

War es hilfreich?

Lösung

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.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top