python实现文件编码批量转换

import os
from chardet import detect
import traceback

def Obtaining_the_file_path(path,file_suffix):
    path_array=[]
    for root, dirs, files in os.walk(path):
      

你可能感兴趣的:(python开发实战,python,大数据,开发语言)