如何访问项目根文件夹

时间:2016-09-28 19:38:19

标签: python eclipse

下面是我项目的截图。虽然我可以使用_files_inner轻松访问我的pd.read_csv("./_files_inner/games.csv")文件夹,但我发现访问“root”文件夹_files

非常棘手

如果您看到我的项目资源管理器,我正在尝试访问_files,但没有指定绝对路径(即C:\\Users\\adhg\\dev\\py\\_files\\games.csv),因为其他开发人员有不同的路径。

问题:如何使用类似这样的内容访问根_files文件夹(不起作用)pd.read_csv("./_files/games.csv")

import pandas as pd

csv_result = pd.read_csv("./_files/games.csv")  #will not work
csv_result = pd.read_csv("./_files_inner/games.csv") #works 

print csv_result

enter image description here

1 个答案:

答案 0 :(得分:1)

try using ../_files_inner/games.csv