I want to write a folder on a windows system, Vista and Win7 with NTFS file systems.
The folders may contain the characters å, ä and/or ö, “förjävligt” for example.
The python files and every string in it is currently in UTF-8, how do I convert it to suite the Windows file system?
If you’re working with normal Python 2 strings, you can simply convert them to Unicode
and create the files using those Unicode strings. Python (and indirectly the Windows API) will take care of the rest.