import os flie_path = 'c:/users/yang/Desktop/yang.txt' if os.path.exists(flie_path): with open(file_path,'r+'):
时间: 2024-03-10 14:48:07 浏览: 57
Path类与Directory类与File类对路径/目录/文件的操作实例
您的代码好像不完整,缺少一些语句。不过我可以猜测您想做的事情。您想判断文件是否存在,如果存在则以读写模式打开该文件。如果我猜对了,您可以试试这样的代码:
```
import os
file_path = 'c:/users/yang/Desktop/yang.txt'
if os.path.exists(file_path):
with open(file_path, 'r+') as f:
# 在这里写入您想要进行的文件操作
else:
print('文件不存在!')
```
在这个代码块中,我们首先使用 `os.path.exists()` 方法判断文件是否存在。如果文件存在,则用 `open()` 函数以读写模式打开该文件,并在 `with` 语句块中进行文件的操作。如果文件不存在,则输出提示信息。
阅读全文