概要
Pythonで「ファイル名またはディレクトリ名を変更する」の動作を確認してみました。
以下のページを参考にしました。
Qiitaはメンテナンスのためサービスを一時的に停止しています。
実装
以下のファイルを作成しました。
sample.py
import os
oldpath = './test/book.txt'
newpath = './test/memo.txt'
os.rename(oldpath, newpath)
oldpath = './test/back'
newpath = './test/old'
os.rename(oldpath, newpath)
以下のコマンドを実行しました。
$ mkdir test
$ touch test/book.txt
$ mkdir test/back
$ ls test
back book.txt
$ python3 sample.py
$ ls test
memo.txt old
まとめ
何かの役に立てばと。