2015/04/04

パスをディレクトリとファイル名に分割する

フルパスをディレクトリとファイル名に分けるには os.path.split を使う。


os.path.split([path])


結果:
・分割結果(ディレクトリ, ファイル名)


os.path.split
結果