标签: python copy python-os
如果文件夹2不包含文件,我需要编写python代码将文件从一个文件夹(文件夹1)移动到另一个文件夹(文件夹2)。我想知道是否应该使用shutil.copy
答案 0 :(得分:1)
试试这个
if not os.path.exists('destination path'): shutil.move("path/to/current/file.foo", "path/to/new/destination/for/file.foo")