Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ファイルの親ディレクトリを取得したい。このコードは機能しません:
projectRoot = os.path.dirname(os.pardir(os.path.abspath(__file__)))
どうしたの?
(私はdjangoアプリケーションを開発しており、アプリケーションの設定ファイルでこの変数を使用しています)
ありがとう。
ロマン
これと同じくらい簡単です:
import os def get_parent_dir(file_path): return os.path.dirname(file_path)
実行中のスクリプトの file_path を取得するには、次のようにします。
import sys file_path = sys.argv[0]