私のDjangoプロジェクトで画像ディレクトリへのパスを設定したい...正常に動作していますが、FreeBSDでスクリプトを実行すると動作しません...
import os
imagesDirPath = (os.path.dirname(__file__)) + "/couponRestApiApp/stores/images/"
print imagesDirPath
output: /home/vaibhav/TRAC/coupon-rest-api/couponRestApi/couponRestApiApp/stores/images/
上記は私のシステムで動作していますが、freeBSD で試してみると、次のようになります。
/couponRestApiApp/stores/images/
しかし、そうあるべきです
/home/vaibhav/coupon-rest-api/couponRestApi/couponRestApiApp/stores/images/
誰かが間違っていることを教えてもらえますか...