1、Run Notepad++ and then open menu Plugins->Plugin Manager->Show Plugin Manager
运行notepad++ 打开插件–》插件管理器–》显示插件管理
2、Install Python Script. When plugin is installed, restart the application.
3、安装Python Script 等待安装完毕,重启应用
1、Choose menu Plugins->Python Script->New script.
选择插件–》python 脚本–》新建脚本
2.Choose its name, and then past the following code:
选择当前目录,新建名称为“convertToUTF8.py” 的脚本,脚本内容如下
import os;
import sys;
filePathSrc="F:\\scriptsutf\\" # Path to the folder with files to convert
for root, dirs, files in os.walk(filePathSrc):
for fn in files:
if fn[-4:] == '.sql': # Specify type of the files
notepad.open(root + "\\" + fn)
notepad.runMenuCommand("Encoding", "Convert to UTF-8")
notepad.save()
notepad.close()
如果要转化为ANSI 就把下面UTF-8改为ANSI既可,说明一下下面的fn[-5:],指寻找后面5个字符匹配的路径后缀为.html ,如果你要匹配.cpp ,则应该是fn[-4:],下面包含了.html .cpp一起修改。转换成不同的编码格式,只需修改 Convert to UTF-8 为下面菜单的红色框里面对应项即可。我的是notepad++7.5.8的,不同版本可能稍有不同。设置为跟自己版本一致即可。
if fn[-2:] == '.h' or fn[-4:] == '.cpp':
如果要匹配多种文件格式条件可以用OR
1.notepad ++ 必须是在 英文状态下上述 方法才有效
2.filePathSrc 路径中不能包含中文
3.python不支持tab 和空格混用 缩进,所以最好是打开notepad++ 的 View–》显示空格与制表符 如上面图所示
显示空格和制表符
参考:How do I convert an ANSI encoded file to UTF-8 with Notepad++? [closed]