移动文件和目录,即使它们已经存在于 dest 中
所以我想将一些文件和目录从一个位置复制到另一个位置。使用 shutdown.move 非常简单,但是当文件或目录已经位于目标位置时我遇到了问题。我收到的错误是目标路径“...”已经存在
。
我尝试了 os.rename ,但它也没有产生预期的结果。 有没有一种简单的方法可以将文件和目录结构复制到另一个位置,即使这些文件和目录结构已经存在于 dest 中?
这是我现在所拥有的:
fileList = os.listdir('/Users/john.leschinski/Desktop/testSrc')
dest = '/Users/john.leschinski/Desktop/testMove'
for i in fileList:
src = '/Users/john.leschinski/Desktop/testSrc/' + i
shutil.move(src,dest)
So I want to copy some files and directories from one location to another. Easy enough with shutil.move
, but I run into problems when the files or directories are already in the destination. The error I get is Destination path '...' already exists
.
I tried os.rename
and it didn't produce the desired results either.
Is there an easy way to copy files and dir structure to another location, even if those files and dir structure are already present in dest?
Here's what I have now:
fileList = os.listdir('/Users/john.leschinski/Desktop/testSrc')
dest = '/Users/john.leschinski/Desktop/testMove'
for i in fileList:
src = '/Users/john.leschinski/Desktop/testSrc/' + i
shutil.move(src,dest)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
怎么样:
How about: