FuncShare
関数一覧
Python関数
言語一覧
タグ一覧
ログイン
ユーザー登録
TOP
関数一覧
ファイルの名前を変更または移動
ファイルの名前を変更または移動
コピー (
0
)
def rename_or_move_file(current_path, new_path): os.rename(current_path, new_path)
関数説明
ファイルの名前を変更するか、別のディレクトリに移動する
引数説明
現在のファイルパス(文字列)、新しいファイルパス(文字列)
返り値説明
funky
Feb. 8, 2024, 10:20 a.m.