python删掉root_directory文件夹下的一个excel文件
时间: 2024-05-14 07:15:59 浏览: 119
用python语言把excel表格首行删去
5星 · 资源好评率100%
您可以使用Python的os和os.path模块来删除目录中的文件。
下面是一个示例代码,用于删除名为"example.xlsx"的文件:
```python
import os
root_directory = "/path/to/root/directory"
file_to_delete = "example.xlsx"
# 拼接文件路径
file_path = os.path.join(root_directory, file_to_delete)
# 检查文件是否存在,如果存在则删除
if os.path.exists(file_path):
os.remove(file_path)
print(f"{file_to_delete} has been deleted.")
else:
print(f"{file_to_delete} does not exist.")
```
请注意,这将永久删除文件,因此请谨慎操作。
阅读全文