python 文件移动

python实现文件移动:

import shutil
shutil.move("original_path", "new_folder")  # move files to new folder

ps: 看到有说法说这种方法可能会比较慢,没有做测试。

原文地址:https://www.cnblogs.com/buxizhizhoum/p/7615084.html