mirror of
https://github.com/ClovertaTheTrilobita/SanYeCao-Nonebot.git
synced 2026-04-01 22:04:51 +00:00
10 lines
241 B
Python
10 lines
241 B
Python
|
|
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}")
|