2013年1月21日 星期一

[Python] 開發環境檔案夾選擇


小技巧:

在不同系統中可以建立多個不同變數:

local_folder = 'D:/projects/a'
online_folder = '/django_projects/b'


利用if判斷讓系統自行判斷存入資料夾

if os.path.exists(local_folder):
    base_folder = local_folder  
if os.path.exists(online_folder):
    base_folder = online_folder

沒有留言:

張貼留言