パスの操作

公式サイト:

os.path – 共通のパス名操作 | Python 3.x ドキュメント [公式]

パスを結合する (join)

join を使ってパスを組み立てる。

user_dir = os.path.join("C:\\", "Users", "[User Name]")Code language: Python (python)

参考:

パスの結合は os.path.join() を使用する | ポテサラ

パスの結合/連結 | Python-izm

パスを結合する | Python 入門

パス名を結合する | 某エンジニアのお仕事以外のメモ

os.path.join() の注意事項 | 黒くまのおむすび

Windows でパスを指定する時は注意 | buralog

os.path.join | Python 3.x ドキュメント [公式]

os.path.join on Windows – Stack Overflow

パスを操作する

参考:

os.path – 共通のパス名操作 | Python 3x ドキュメント [公式]

パスを判定する

参考:

os.path – 共通のパス名操作 | Python 3x ドキュメント [公式]

カレントディレクトリを取得する

カレントディレクトリを取得するには、os.getcwd 関数を用いる。

import os
pwd = os.getcwd()Code language: Python (python)

ドキュメント:

os.getcwd | Python 3.x ドキュメント [公式]

参考:

カレントディレクトリを取得/変更 | note.nkmk.me

Find the current directory and file’s directory – Stack Overflow

How to get the current working directory? – Stack Overflow

まとめ

パス文字列からファイル名/フォルダ名/拡張子を取得/結合 | note.nkmk.me

パスの取得と操作 | Python 数値計算入門

パスの取得/操作 | Python 入門

記事をシェアする:
タグ:

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です

Protected by reCAPTCHA