赞
踩
请通过Python编程,将一个目录下的文件全部移动到另一个目录下。
import os
import shutil
def movefiles(sourceDir, targetDir):
# 请在此添加代码,补全函数movefiles 实现将sourceDir下文件移动到targetDir下的功能
#-----------Begin----------
if not os.path.exists(targetDir):
os
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。