2016年2月4日 星期四

Python 取相對路徑


Python取相對路徑的方式很簡單,以下三種。

第一種:(在檔案中取相對路徑方法)
import os
os.path.join(os.path.dirname(__file__), '** 這裡可以寫該位置下的資料夾 **')


第二種:(在命令列console中取相對路徑方法一)
import os, sys
os.path.join(os.path.dirname(sys.argv[0]), '** 這裡可以寫該位置下的資料夾 **')

第三種:(在命令列console中取得相對路徑方法二)
import os
os.path.join(os.path.dirname(os.getcwd()), '** 這裡可以寫該位置下的資料夾 **')


沒有留言:

張貼留言