Question

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

Was it helpful?

Solution

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.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top