web-dev-qa-db-ja.com

スクリプトディレクトリ名を取得-Python

私はこれを使用して完全なファイルパスを取得できることを知っています

os.path.dirname(os.path.realpath(__file__))

しかし、私はフォルダの名前だけが欲しい、私のスクリプトは入っています。SO my_script.pyがあり、それが

/home/user/test/my_script.py

「テスト」を返したいのですが、どうすればいいですか?

ありがとう

32
spenf10
import os
os.path.basename(os.path.dirname(os.path.realpath(__file__)))

分解:

currentFile = __file__  # May be 'my_script', or './my_script' or
                        # '/home/user/test/my_script.py' depending on exactly how
                        # the script was run/loaded.
realPath = os.path.realpath(currentFile)  # /home/user/test/my_script.py
dirPath = os.path.dirname(realPath)  # /home/user/test
dirName = os.path.basename(dirPath) # test
47
bytesized
>>> import os
>>> os.getcwd()
53
Joe T. Boka