SanYeCao-Nonebot/src/clover_image/delete_file.py

10 lines
241 B
Python
Raw Normal View History

2025-02-20 09:33:58 +00:00
import os
async def delete_file(file_path):
try:
os.remove(file_path)
except FileNotFoundError:
print(f"文件 {file_path} 不存在。")
except Exception as e:
print(f"删除文件时发生错误: {e}")