I have my custom application that generates a directory in My documents path, after installation the application uses that directory, but i got an issue in Chinese windows O
Use the special folders in System.Environment
var path = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
var subFolderPath = Path.Combine(path, "sub folder");
String path = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
then you can append folder name as
string folder ="\\YOUR_FOLDER_NAME\\";
Then append to you path as
String full_path=path+folder;