os.path モジュール
[APIドキュメント] [toc]
目次
関数
basename
basename(path)
- 引数
- path:パス名 <str / path-like>
- 戻り値:ファイル名 <str>
パスの末尾のファイル名部分を取得します。
dirname
dirname(path)
exists
exists(path)
getatime
getatime(path)
getctime
getctime(path)
getmtime
getmtime(path)
isdir
isdir(path)
split
split(path)
- 引数
- path : パス名 <str / path-like>
- 戻り値
- return : パス名を分割した文字列 <tuple(str)>
以下のようにパス名をフォルダ(ディレクトリ)部分とファイル名に分割します。
- 例:aaaaa/bbbbb/cccccc.txt → (‘aaaaa/bbbbb’, ‘cccccc.txt’)
splitext
splitext(path)
- 引数
- path : パス名 <str / path-like>
- 戻り値
- return : ファイル名と拡張子に分割された文字列 <tuple(str)>
以下のようにパス名をファイル名部分と拡張子との分割します。
- 例:aaaaaa/bbbbb.txt → (‘aaaaaa/bbbbb’, ‘.txt’)