如何在Python中读取其他目录中的文件

10 浏览
0 Comments

如何在Python中读取其他目录中的文件

我在名为direct的目录中有一个名为5_1.txt的文件,如何使用read读取该文件?我使用以下代码验证了路径:

import os
os.getcwd()
os.path.exists(direct)

结果为

True

x_file=open(direct,'r')  

然后我得到了这个错误:

Traceback (most recent call last):
File "", line 1, in 
x_file=open(direct,'r')
IOError: [Errno 13] Permission denied

我不知道为什么我无法读取该文件?有什么建议吗?

谢谢。

0