选择性拷贝
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了选择性拷贝相关的知识,希望对你有一定的参考价值。
遍历work目录及子目录中扩展名为txt的文件,将它们拷贝到一个新的文件夹work_txt中#!/usr/bin/env python # -*- coding: utf-8 -*- import os import shutil spath = 'f:\\work' dpath = 'f:\\work_txt' if not os.path.exists(dpath): os.mkdir(dpath) for root, dirs, files in os.walk(spath): for f in files: if f.endswith('.txt'): print(os.path.join(root, f)) txt = os.path.join(root, f) shutil.copy(txt, dpath)
以上是关于选择性拷贝的主要内容,如果未能解决你的问题,请参考以下文章