12-25-2017, 07:34 PM
Hi !
I have a problem when uploading files to an FTP server that contains "special characters"
For example, if i want to upload a file named "Voici le Maître.jpeg" , it uploads correctly, but when i look in the FTP directory, the file is renamed : "Voici le Ma" , with no file extensions.
Macro testupload
Note : If i upload directly from Filezilla, there is no problems
Can you help me ? Thanks
I have a problem when uploading files to an FTP server that contains "special characters"
For example, if i want to upload a file named "Voici le Maître.jpeg" , it uploads correctly, but when i look in the FTP directory, the file is renamed : "Voici le Ma" , with no file extensions.
Macro testupload
Ftp f
f.Connect("ftp.server.test" "user" "pwd" 21 0 1)
f.DirSet(F"temp")
f.SetProgressDialog(1 "Progress")
f.FilePut(F"$desktop$\Voici le Maître.jpeg" F"Voici le Maître.jpeg")
Note : If i upload directly from Filezilla, there is no problems
Can you help me ? Thanks