python 文件整理 shutil
Posted 眼镜儿
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 文件整理 shutil相关的知识,希望对你有一定的参考价值。
以下代码将指定目录下的所有文件分类,按照后缀名归类存储
import os import shutil path = ‘./‘ def foo(): files = os.listdir(path) for f in files: folder = path + f.split(‘.‘)[-1] if not os.path.exists(folder): os.makedirs(folder) shutil.move(f, folder) if __name__ == ‘__main__‘: foo()
以上是关于python 文件整理 shutil的主要内容,如果未能解决你的问题,请参考以下文章
[python]os库与shutil库与操作系统的交互-整理硬盘中Vivaldi的作品