Python源码导出到一个txt文件

网友投稿 783 2022-10-08

Python源码导出到一个txt文件

Python源码导出到一个txt文件

# -*- coding: utf-8 -*-"""@author: Mr_zhang@software: PyCharm@file: export.py@time: 2022/6/29 14:57"""import osimport reexclude_file = "device|residence|custom_file|user|public|management|setting|models|00|pyc|__|urls|filters|views"pattern = re.compile(exclude_file)BASEDIR = os.path.dirname(__file__)def read_dir(path): _file_list = [] for dir_path, dirs, files in os.walk(path): for file in files: file_path = os.path.join(dir_path, file) if "\" in file_path: file_path = file_path.replace("\", "/") if not pattern.search(file_path): _file_list.append(file_path) for _dir in dirs: _file_list.extend(read_dir(os.path.join(dir_path, _dir))) return _file_listif __name__ == '__main__': file_list = read_dir(os.path.join(BASEDIR, "apps")) print(len(file_list)) for item in file_list: print(item) # with open("code.txt", "w+") as w: # for file in file_list: # with open(file, "r") as f: # w.writelines(f.readlines())

作者:​​前方、有光​​​

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:微信小程序Demo(微信小程序demo是什么意思)
下一篇:小程序mta上报
相关文章

 发表评论

暂时没有评论,来抢沙发吧~