将母文件夹下面所有的子文件夹下的文件移动到母文件夹

import os
import shutil

# 获取当前文件夹的地址,后面所有的文件都移动到这个文件夹下面
parent_path = os.getcwd()

# 用os.walk遍历当前文件夹下面的 子文件夹full path,文件夹的名字,文件的名字
for root, dirs, files in os.walk(os.getcwd()):
    # root里面就是子文件夹full path,我们要进去
    os.chdir(root)
    # 获得当前文件夹的地址
    child_path = os.getcwd()
    # 逐一遍历每个文件
    for file in files:
        print(file)
        try:
            # 从子文件夹移动到母文件夹
            shutil.move(child_path+"\\"+file, parent_path)
        except Exception:
            print(child_path+"\\"+file, parent_path)

你可能感兴趣的:(python)