我是靠谱客的博主 默默金鱼,最近开发中收集的这篇文章主要介绍python删除整个目录(目录非空)的代码,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

将做工程过程中较好的一些代码片段做个备份,如下的资料是关于python删除整个目录(目录非空)的代码,应该能对码农们有些用途。

import os
import shutil

def CleanDir( Dir ):
    if os.path.isdir( Dir ):
        paths = os.listdir( Dir )
        for path in paths:
            filePath = os.path.join( Dir, path )
            if os.path.isfile( filePath ):
                try:
                    os.remove( filePath )
                except os.error:
                    autoRun.exception( "remove %s error." %filePath )#引入logging
            elif os.path.isdir( filePath ):
                if filePath[-4:].lower() == ".svn".lower():
                    continue
                shutil.rmtree(filePath,True)
    return True

Dir = "D:Temp"
CleanDir(Dir)

最后

以上就是默默金鱼为你收集整理的python删除整个目录(目录非空)的代码的全部内容,希望文章能够帮你解决python删除整个目录(目录非空)的代码所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(63)

评论列表共有 0 条评论

立即
投稿
返回
顶部