阅读量:106
deletefile函数用于删除指定的文件。其正确使用方法是:
- 引入相关的文件操作库,如os模块。
- 使用deletefile函数删除指定的文件,传入文件路径作为参数。
- 确保文件存在且有权限删除。
- 处理可能出现的异常情况,如文件不存在或无法删除。
示例代码如下:
import os
def deletefile(filepath):
try:
os.remove(filepath)
print("File deleted successfully.")
except FileNotFoundError:
print("File not found.")
except PermissionError:
print("Permission denied to delete file.")
# 使用示例
deletefile("example.txt")