python移动多个子文件中的文件到一个文件夹

Posted J.M.Liu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python移动多个子文件中的文件到一个文件夹相关的知识,希望对你有一定的参考价值。

 1 import os
 2 import os.path
 3 import shutil
 4 
 5 def listDir(dirTemp):
 6     if None == dirTemp:
 7         return
 8     global nameList
 9     if not os.path.exists(dirTemp):
10         print "file or directory isn‘t exist"
11         return
12 
13     if os.path.isfile(dirTemp):
14         if dirTemp.find(.wmv) > 0: nameList.append(dirTemp)
15         return
16 
17     resultList = os.listdir(dirTemp)
18 
19     for fileOrDir in resultList:
20         listDir(dirTemp + "/" + fileOrDir)
21 
22     return nameList
23 
24 
25 path = rF:\java web学习.decode(utf-8)
26 nameList = []
27 list=listDir(path)
28 for item in list:
29     shutil.move(item, path)

     当一个文件夹在的文件不是直接在一个文件夹的,而是在该文件夹的一个个子文件夹中的时候,就用这段代码实现把全部文件移动到指定文件夹。

以上是关于python移动多个子文件中的文件到一个文件夹的主要内容,如果未能解决你的问题,请参考以下文章

使用 Python 将内容从单个文件夹拆分到多个子文件夹

批量移动多个文件到多个文件夹的bat命令,详细如下:

Python 2.7:调用 subprocess.popen 阻止文件访问

将电子邮件附件移动到 Outlook 中的子文件夹

如何在多个文件中拆分 Python Tkinter 代码

将特定子文件夹中的文件移动到另一个子文件夹