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")