Converts text files between Unicode (UTF-8, UTF-16) and ASCII.
Usage: conv.exe [options] filemask
Options:
-out:{format} - output format (utf8 | utf16 | ascii)
-nohdr - output without header (BOM)
-subdir - scan in subdirectories
-in:{format} - input format (if the header is wrong/broken/etc or missing)
-in:text - force input format from text (default: header)
-codepage:{n} - codepage (default: n = 0 - CP_ACP)
-test - do not convert, test only
Example:
conv.exe -out:utf8 -codepage:1251 rus.txt
conv.exe -subdir -in:ascii -out:utf16 *.txt
|