Hi All,
Currently Iam writing python ftp script to upload a file to FTP Server.
The server where iam going to download a file expects the upload command in this format
"put <filename> flash"
I dont know how to send this same command in ftp session after login.
I have tried sendcmd call in this way, but its not working
comand='put send.bin flash'
ftp.sendcmd('STOR'+comand)
I need a suggestion from this group.
thanks