我有這樣的目錄結構:os.path.join(os.path.dirname(__ FILE__))沒有返回
--bin/
--lib/
--data/
所以基本上,可執行腳本在bin和它在調用文件LIB ..但LIB有數據
文本文件來傳達這通常使用的工作: 在通常讀取文件我用它來做到這一點
file_path = os.path.join(os.path.dirname(__file__))+ "/../" +"data/"+filename
f = open(file_path,"r")
但是,在這種情況下,如果ID ○:
print os.path.join(os.path.dirname(__file__))
returns nothing?
我在做什麼錯.. 感謝
你可以舉一個__文件的確切內容的例子___ – Dhara