I am trying to save a file path in ini file which contains a folder in Arabic language. i.e.
D:\ملف جديد\Checking Folder
But after using WritePrivateProfileString()
to write it in settings.ini . It shows path as follows:
D:\??? ????\Checking Folder
What should I do to save the path correctly?
Edit:
Following is the code I am using to write ini file
[DllImport("kernel32")]
private static extern long WritePrivateProfileString(string section, string key, string val, string filePath);
You could try out my INI library, I created it in order to have a friendlier (and more meaningful / intuitive) API then those WritePrivateProfile APIs.
Here is a sample of how you can use it:
I hope this helps.