I want to open a file which names is not in ASCII character set. like
fstream fileH;
fileH.open("δ»Wüste.txt");
Is there way exist in through which I could open file with such names.
Thanks
Vivek
Perhaps you can try unicode with "\u". For example the ace of spades: cout << " \u2663 ";
any more suggestion.
If I pass a const char* (as utf-8 string) will it work?
Try and see what happens mate