python实现将文件夹下面的不是以py文件结尾的文件都过滤掉的方法
程序员文章站
2022-05-10 22:14:44
如下所示:
dir_in = os.path.join(os.path.dirname(__file__), r"oldapp")
...
如下所示:
dir_in = os.path.join(os.path.dirname(__file__), r"oldapp") dir_in = unicode(dir_in, r"gbk") dir_out = os.path.join(os.path.dirname(__file__), r"newapp") dir_out = unicode(dir_out, r"gbk") rediret_file_path_list = [] soure_file_path_out_list = [] for root, dirs, files in os.walk(dir_in): for file in files: # print('root=%s' %root) # print('1111 file=%s' %file) # filter file extend name not .py filter_file = file.split('.') if filter_file[1] != 'py': continue soure_file_path_out = os.path.join(root, file) # print(soure_file_path_out) soure_file_path_out_list.append(soure_file_path_out) root_new = root.replace(r'oldapp', r'newapp') if not os.path.exists(root_new): os.makedirs(root_new) rediret_file_path = os.path.join(root_new, file) # print('rediret_file_path=%s' %rediret_file_path) rediret_file_path_list.append(rediret_file_path)
以上这篇python实现将文件夹下面的不是以py文件结尾的文件都过滤掉的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
上一篇: 李广的一生兢兢业业,为什么他会难以封侯?