前言
- 在开发中总会遇到这样的问题,别人的代码采用的编码格式是GBK,而自己的项目的编码格式是UTF-8,如果直接复制过来,就会出现中文乱码的问题,一个个该编码格式又非常麻烦。所以我写了这样一小段简短的代码,可以一键修改指定目录下所有文件的编码格式。
- 使用的时候只需要将转换编码的目录填入变量directory_path,并传入参数,从什么编码转为什么编码。
- Tips:必须确定好待转换的文件一定是你所指定的编码格式。
代码
import os
import codecsdef convert_encoding(file_path, from_encoding='gbk', to_encoding='utf-8'):try:with codecs.open(file_path, 'r', encoding=from_encoding) as f:content = f.read()with codecs.open(file_path, 'w', encoding=to_encoding) as f:f.write(content)print(f"转换成功: {file_path}")except Exception as e:print(f"转换失败: {file_path}")print(e)def convert_files_in_directory(directory):for item in os.listdir(directory):item_path = os.path.join(directory, item)if os.path.isdir(item_path):convert_files_in_directory(item_path) elif os.path.isfile(item_path):convert_encoding(item_path)
directory_path = '/path/to/your/directory'
convert_files_in_directory(directory_path)