ファイルが存在するディレクトリを取得したい。たとえば、フル パスは次のとおりです。
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])
しかし、上記の例は特定のディレクトリ セパレータに依存しており、あまりきれいではありません。より良い方法はありますか?