python獲取當前文件路徑以及父文件路徑
#當前文件的路徑 pwd = os.getcwd() #當前文件的父路徑 father_path = os.path.abspath(os.path.dirname(pwd) + os.path.sep + "." ) #當前文件的前兩級目錄 ...
當前文件的路徑 pwd os.getcwd 當前文件的父路徑 father path os.path.abspath os.path.dirname pwd os.path.sep . 當前文件的前兩級目錄 grader father os.path.abspath os.path.dirname pwd os.path.sep .. ...
2017-05-04 16:39 0 68308 推薦指數:
#當前文件的路徑 pwd = os.getcwd() #當前文件的父路徑 father_path = os.path.abspath(os.path.dirname(pwd) + os.path.sep + "." ) #當前文件的前兩級目錄 ...
1 ...
引入包: 正確獲取當前的路徑: __file__是當前執行的文件 ...
獲取當前文件的路徑和父路徑(2級)-pycharm: ...
獲取當前文件夾路徑及父級目錄: ...
法二: ...
在 Mac OS X 中怎樣獲取當前文件夾的路徑? ...