2013年8月29日 星期四

[python] 取得 執行程式的 位置

有時候使用外部指令來 執行 python的程式,
想要取得該程式 的 實際路徑位置
可以使用 os.path.abspath(__file__) 來獲取 路徑位置的資訊。


import os
dirname, filename = os.path.split(os.path.abspath(__file__))

cf.
python - Find current directory and file's directory - Stack Overflow
http://stackoverflow.com/questions/5137497/find-current-directory-and-files-directory


沒有留言:

張貼留言