python

关注公众号 jb51net

关闭
首页 > 脚本专栏 > python > python删除目录

python删除目录的三种方法

作者:hakesashou

本文主要介绍了python删除目录的三种方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧

一、os.rmdir(path)

删除目录 path,path必须是个空目录,否则抛出OSError异常。

import os
os.rmdir('./test')  # test是一个空的文件夹

二、os.removedirs(path) 

递归地删除目录。要求每一级目录都为空,才能递归删除全部目录。子目录被成功删除,才删除父目录;如果子目录没有成功删除,将抛出OSError异常。 

import os
#test2是test的子文件夹,如果test2不为空,则抛出异常;如果test2为空,test不为空,则test2删除成功,test不删除,但不报异常
os.removedirs('./test/test2)

三、shutil.rmtree(path)

不管目录path是否为空,都删除。

import shutil
shutil.rmtree('./test')  # 删除test文件夹下所有的文件、文件夹

四、删除文件

Pathlib

from pathlib import Path

# 定义要删除的文件路径
file_to_delete = Path('/home/python/test/file1.txt')

try:
    # 检查文件是否存在
    if file_to_delete.exists() and file_to_delete.is_file():
        # 删除文件
        file_to_delete.unlink()
        print(f"File {file_to_delete} has been deleted.")
    else:
        print(f"File {file_to_delete} does not exist or is not a file.")
except Exception as e:
    print(f"An error occurred: {e}")

os

import os

# 定义要删除的文件路径
file_to_delete = '/home/python/test/file1.txt'

try:
    # 检查文件是否存在
    if os.path.exists(file_to_delete) and os.path.isfile(file_to_delete):
        # 删除文件
        os.remove(file_to_delete)
        print(f"File {file_to_delete} has been deleted.")
    else:
        print(f"File {file_to_delete} does not exist or is not a file.")
except Exception as e:
    print(f"An error occurred: {e}")

到此这篇关于python删除目录的三种方法的文章就介绍到这了,更多相关python删除目录内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文