45

ファイルが存在するディレクトリを取得したい。たとえば、フル パスは次のとおりです。

fullpath = "/absolute/path/to/file"
# something like:
os.getdir(fullpath) # if this existed and behaved like I wanted, it would return "/absolute/path/to"

私はこのようにすることができます:

dir = '/'.join(fullpath.split('/')[:-1])

しかし、上記の例は特定のディレクトリ セパレータに依存しており、あまりきれいではありません。より良い方法はありますか?

4

1 に答える 1

72

あなたはこれを探しています:

>>> import os.path
>>> fullpath = '/absolute/path/to/file'
>>> os.path.dirname(fullpath)
'/absolute/path/to'

関連機能:

>>> os.path.basename(fullpath)
'file'
>>> os.path.split(fullpath)
('/absolute/path/to','file')
于 2013-02-22T11:15:09.417 に答える