I need to upload a file using Raw FTP commands in my program. I got downloading to work using RETR, but how do I upload?
Thanks!
I need to upload a file using Raw FTP commands in my program. I got downloading to work using RETR, but how do I upload?
Thanks!
You need the STOR command for that. You will also need PORT or PASV with STOR to make it work.
I got the answer..You have to use the STOR command followed by the file. F.e. "STOR test.txt"