Code Fragment 发表于 2021-09-27 更新于 2021-10-08 阅读次数: 代码片段 为方便coding,打算把一些固定的,便携的代码收录下来方便以后直接拿来吧你 获取目录下的所有(指定名称或格式)文件 1files_A = sorted(glob.glob(os.path.join(rootA, '*.*'))) glob.glob()的用法 新建文件夹,若存在,则全部删除 1234567def file_create(filename): if os.path.exists(filename): print('found exist file and remove it') shutil.rmtree(filename) os.mkdir(filename) else: os.mkdir(filename)