概述
import os
import shutil
def delete_dir(root_path):
case_list = os.listdir(path= root_path)
case_list.sort()
for case in case_list:
print("case = {}".format(case))
get_subdir = os.listdir(os.path.join(root_path, case))
for sub_dir in get_subdir:
shutil.move(os.path.join(root_path, case, sub_dir), os.path.join(root_path, sub_dir))
os.rmdir(os.path.join(root_path, case))
if __name__ == '__main__':
root_path = r'F:\Hepatobiliary_surgery\test'
delete_dir(root_path)
最后
以上就是谦让溪流为你收集整理的Python os处理 删除上一级目录并保存文件的全部内容,希望文章能够帮你解决Python os处理 删除上一级目录并保存文件所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复