python 删除文件
时间: 2023-10-12 18:14:21 浏览: 78
您可以使用Python中的os模块的remove()方法来删除文件。以下是删除文件的示例代码:
```python
import os
# 定义文件路径
file_path = "path/to/file"
# 判断文件是否存在
if os.path.exists(file_path):
# 删除文件
os.remove(file_path)
print("文件已删除")
else:
print("文件不存在")
```
请注意,使用此方法删除文件将不会将其移动到回收站中。因此,请谨慎使用此方法。
相关问题
Python实现文件的增删
增加文件:
```python
with open("file.txt", "a") as f:
f.write("This is a new line added to the file")
```
删除文件:
```python
import os
os.remove("file.txt")
```
请注意,删除文件是不可逆的操作,请谨慎操作。
阅读全文