python实现文件移动:
import shutil shutil.move("original_path", "new_folder") # move files to new folder
ps: 看到有说法说这种方法可能会比较慢,没有做测试。