版权所有,未经许可,禁止转载
章节
- Python 介绍
- Python 开发环境搭建
- Python 语法
- Python 变量
- Python 数值类型
- Python 类型转换
- Python 字符串(String)
- Python 运算符
- Python 列表(list)
- Python 元组(Tuple)
- Python 集合(Set)
- Python 字典(Dictionary)
- Python If … Else
- Python While 循环
- Python For 循环
- Python 函数
- Python Lambda
- Python 类与对象
- Python 继承
- Python 迭代器(Iterator)
- Python 模块
- Python 日期(Datetime)
- Python JSON
- Python 正则表达式(RegEx)
- Python PIP包管理器
- Python 异常处理(Try…Except)
- Python 打开文件(File Open)
- Python 读文件
- Python 写文件
- Python 删除文件与文件夹
删除文件
要删除一个文件,需导入OS模块,使用其中的os.remove()
函数:
示例
删除文件“test.txt”:
import os
os.remove("test.txt")
检查文件是否存在
为了避免出错,需要在删除之前检查文件是否存在:
示例
删除前检查文件是否存在:
import os
if os.path.exists("test.txt"):
os.remove("test.txt")
else:
print("文件不存在")
删除文件夹
要删除整个文件夹,使用os.rmdir()
方法:
示例
删除文件夹“testfolder”:
import os
os.rmdir("testfolder")
注意: 只能删除空文件夹。