我的Python脚本位于 src 文件夹中,我的文件位于 res 文件夹中。用于打开此文件的文件路径是什么?
name = "test"
open("res\\"+name+".json")
尽管res文件夹中有文件 test.json ,但我收到此错误,IOError: [Errno 2] No such file or directory: 'res\\test.json'
Dirs结构
--main dir\
---- src\
---- res\
答案 0 :(得分:1)
编写的代码告诉程序查看文件夹
src\\res
,因为路径是相对于当前路径的,即
src
。
相反,试试这个:
open("..\\res\\"+name+".json")
这意味着,上一个文件夹级别(..
),然后转到res
。