tags:

views:

224

answers:

1

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.

+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
Awesome... that works!
Maverique