我在Windows中編寫了一個Python腳本2.5,它的CurrentDir = C:\users\spring\projects\sw\demo\753\ver1.1\011\rev120\source
我的文件是test.py
。從這條路徑我想訪問這個路徑中的文件:C:\users\spring\projects\sw\demo\753\ver1.1\011\rev120\Common\
在python中操作路徑
我試過使用os.path.join
,但它不起作用,我從文檔我明白爲什麼。 那麼最好的pythonic解決方案是什麼?
currentdir = os.getcwd()
config_file_path = os.path.join(currentdir,"\\..\\Common")
張貼一些代碼。什麼不工作? –
代碼片段將有助於追蹤問題。 –
你爲什麼使用古代的蟒蛇版本? – ThiefMaster