8

The function "Convert to UTF-8 without BOM" of Notepad++ is really nice. But I have 200 files and all of them need to be coverted. Therefor I found this little python script:

import os;
import sys;
filePathSrc="C:\\Temp\\UTF8"
for root, dirs, files in os.walk(filePathSrc):
    for fn in files:
      if fn[-4:] != '.jar' and fn[-5:] != '.ear' and fn[-4:] != '.gif' and fn[-4:] != '.jpg' and fn[-5:] != '.jpeg' and fn[-4:] != '.xls' and fn[-4:] != '.GIF' and fn[-4:] != '.JPG' and fn[-5:] != '.JPEG' and fn[-4:] != '.XLS' and fn[-4:] != '.PNG' and fn[-4:] != '.png' and fn[-4:] != '.cab' and fn[-4:] != '.CAB' and fn[-4:] != '.ico':
        notepad.open(root + "\\" + fn)
        console.write(root + "\\" + fn + "\r\n")
        notepad.runMenuCommand("Encoding", "Convert to UTF-8 without BOM")
        notepad.save()
        notepad.close()

It goes through every file -> I can see this. But after it finished, the charset is stil ANSI in my case :/

Can anyone help me?

2
  • 1
    Are there any error messages? You run this into the "notepad++ Python Script plugin"? Maybe you can check if there really is a "Convert to UTF-8 without BOM" in the Encoding menu. In my notepad++ there is only a "Convert to UTF-8" . It could be worth changing the string. – Lars Fischer Feb 20 '16 at 17:33
  • Right, I use this plugin. And in my notepad there is "Convert to UTF-8 without BOM" and "Covert to UTF-8" - so both. – Phil Feb 20 '16 at 17:40
9

Here is what worked for me:

Go to Notepad++ -> Plugins -> Plugins Admin.

Find and install Python Script plugin.

Create new python script with Plugins -> Python Script -> New script.

Insert this code into your script:

import os;
import sys;
filePathSrc="C:\\Users\\YourUsername\\Desktop\\txtFolder"
for root, dirs, files in os.walk(filePathSrc):
    for fn in files:
      if fn[-4:] == '.txt' or fn[-4:] == '.csv':
        notepad.open(root + "\\" + fn)
        console.write(root + "\\" + fn + "\r\n")
        notepad.runMenuCommand("Encoding", "Convert to UTF-8")
        notepad.save()
        notepad.close()

Replace C:\\Users\\YourUsername\\Desktop\\txtFolder with path to your Windows folder where your files are.

Script works with .txt and .csv files and ignores all other files in folder.

Run script with Plugins -> Python Scripts -> Scripts -> name of your script

3
  • Are you sure the second condition fn[-5:] is correct? I believe it should be fn[-4:] too, because .csv is the same length as .txt. Besides I would recommend to use the endswith method if possible. – turbolocust Jun 15 '20 at 17:39
  • @turbolocust right you are my friend. changed accordingly. – Harvey Jun 17 '20 at 7:34
  • 1
    This deserves an upvote as I tried multiple things on windows and this is the only one that actually worked. Thank you – tim Jul 13 at 16:11
5

Got my mistake. My notepad is in german. So take care if it's called "Encoding" or in my case "Kodierung" and "Convert to UTF-8 without BOM" is "Konvertiere zu UTF-8 ohne BOM"

That helped me out!

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

Not the answer you're looking for? Browse other questions tagged or ask your own question.