I know I can list the folders in the command line and copy it into a spreadsheet, but if the folder names are in Chinese, the names do not show up correctly. I guess the command prompt does not support Unicode? I am using an English Windows XP OS.
views:
224answers:
1
+1
A:
How about redirecting to a file directly, without going through the console window?
Something like:
dir /b path/to/china > folders.txt
And then opening the resulting text file in Excel? This should get you a text file with the filenames in Windows' filename encoding.
unwind
2009-03-09 08:26:11
Awesome... that works!
Maverique
2009-03-09 08:28:57