I'm trying to upload a csv file including accents in the file name. Uploading the same file is working fine through Filezilla.
My code is :
session = ftplib.FTP('ftp.myserver.com','mylogin','mypass')
file = open(myfilepath,'rb')
session.storbinary('STOR myfolder//title_à écho âccent.txt', file)
file.close()
session.quit()
I'm getting the following error :
ftplib.error_perm: 501 Invalid character in command
Any fix ?