ファイルの名前を変更または移動

def rename_or_move_file(current_path, new_path):
    os.rename(current_path, new_path)

関数説明

ファイルの名前を変更するか、別のディレクトリに移動する

引数説明

現在のファイルパス(文字列)、新しいファイルパス(文字列)

返り値説明

funky Feb. 8, 2024, 10:20 a.m.