Question:
Hello,
Yesterday I started to evaluate FTP2 ActiveX for a VB6 application. We need to copy a tree to our remote server, so I am testing the methods "PutTree" and "SyncRemoteTree". I also tested the "PutFile" method. All folders and files are uploaded, but in all cases tested, if I have files with accentuation (ã, á, õ, ç, etc), the destination file is uploaded with strange characters (razões -> razões).
The charset is correctly set to utf-8 using the property "DirListingCharset", and I can see it also in the logging: FEAT 211-Extended features supported: LANG EN* UTF8 AUTH TLS;TLS-C;SSL;TLS-P; PBSZ PROT C;P; CCC HOST SIZE MDTM REST STREAM 211 END
Otherwise, if I upload the same files using Filezilla, the names stay as the original ones.
What else can I do to keep the original names of my files?
Thanks in advance for any help.
Isis Nobre Brazil
The fact that õ is showing up as 2 chars (õ) indicates that Chilkat correctly sent the õ using utf-8 but the server interpreted the bytes as ANSI (1-byte per char). In utf-8, õ is 2 bytes. Therefore if Chilkat sends õ in utf-8, it is sending 2 bytes for that char. If the server is interpreting the bytes as ANSI (1-byte per char), then you'll see whatever ANSI chars are represented by each of those bytes.
In summary, it seems the server really needs ANSI. Therefore, set the DirListingCharset property = "ANSI".
Hello,
Thank you very much for your help! I did the change and now I can send those characters correctly!
PutFile(localFilePath As String, remoteFilePath As String) As Long Uploads a local file to the current directory on the FTP server.
If the remoteFilePath contains non-English characters, it may be necessary to set the DirListingCharset property equal to "utf-8". Please refer to the documentation for the DirListingCharset property.
Returns 1 for success, 0 for failure.
DirListingCharset As String Set to "ansi" by default. If the FTP server sends directory listings with non-English filenames, this property can be set to the appropriate value if necessary.
Regards, Isis
Hi There
I'm having the same issue. I have files to ftp over with german characters in them and the german chars become unreadable after the transfer. if use the anscii they german char get deleted! from the file name, if i use the utf-8 they get replaced with scribbles. So whichever encoding I'm using it doesn't work. Filezilla can upload them without any change in the characters. Could you please advise what to try next? Regards,N0rthp0le