8

Possible Duplicate:
Batch-convert files for encoding or line ending under Windows

I need a tool like this
http://www.rotatingscrew.com/utfcast.aspx

But the tool should do the opposite, convert multiple files from utf-8 to iso-8859-1

Is there any tool (php script, batch file, etc.) for Windows that can do this? Thanks

Enrique
  • 305
  • 2
  • 4
  • 12
  • possible duplicates: http://superuser.com/questions/27060 http://superuser.com/questions/16672 http://superuser.com/questions/45148 http://superuser.com/questions/28555 – quack quixote Nov 11 '09 at 17:14
  • most of those questions are about converting TO utf-8, but any of those batch tools should be able to convert in either direction. – quack quixote Nov 11 '09 at 17:14

3 Answers3

14

You can use iconv from GNUWin32, it works the same as the GNU/Linux counterpart:

iconv -f UTF-8 -t ISO-8859-1 filename.txt

you can then use it with batch, provided you've added it to your %PATH%:

for /f %x in ('dir /b *.txt') do iconv -f UTF-8 -t ISO-8859-1 %x
John T
  • 163,373
  • 27
  • 341
  • 348
  • Iff the Windows port is at least half-way sane (I know, many of them aren't and GNUWin32 was a long-time offender in that area) you could simply pass *.txt to iconv. I never really expect it from ported applications but sometimes there are people with an eye for details working on them and then such things are fixed and globbing is done within the application. Might be the case here. – Joey Nov 12 '09 at 07:50
  • Great! worked great!! – Enrique Nov 13 '09 at 16:53
  • 1
    I installed this, but the command gives me a "file not found" message but the file is there. I'm supposed to run this on windows console, right? – darksoulsong Sep 07 '13 at 23:12
  • "iconv.exe -c -f UTF-8 -t ISO-8859-1//TRANSLIT input.gpx > output.gpx" didn't work for me at all: https://postimg.cc/image/nzet60ze5/ – OverTheRainbow Aug 28 '18 at 10:29
4

I wrote a DOS/Windows shell utility to do this. The source code is open source C++, so it can be ported to other systems.

Look for crlf.cppat david.tribble.com/src/src.html
The executable is at david.tribble.com/programs.html

David R Tribble
  • 276
  • 2
  • 6
0

ConvertEncoding link is now dead - use either of these programs which will encode the files for you:

Sathyajith Bhat
  • 61,504
  • 38
  • 179
  • 264