I am trying to upload a file whose name is written in Arabic language to ftp server, and i succeed in uploading the file but i have a problem at the ftp server, where the uploaded file name is incorrect and take unreadable format like "????????" or "*************" or any format other than Arabic.
I have tried to encode file name to UTF-8 or "Default" ANSI encoding but failed what can i do to solve this problem ? Here is the following code which used to encode file path in VB .Net:
FIleNamePath = Encoding.UTF8.GetString(Encoding.UTF8.GetBytes(FIleNamePath))
Thanks in advance