-1
如果文件夾2不包含文件,我需要編寫python代碼將文件從一個文件夾(文件夾1)移動到另一個文件夾(文件夾2)文件。我想知道我們是否應該使用shutil.copy如果文件夾2不包含文件,則將文件從文件夾1移動到文件夾2
如果文件夾2不包含文件,我需要編寫python代碼將文件從一個文件夾(文件夾1)移動到另一個文件夾(文件夾2)文件。我想知道我們是否應該使用shutil.copy如果文件夾2不包含文件,則將文件從文件夾1移動到文件夾2
嘗試了這一點
if not os.path.exists('destination path'):
shutil.move("path/to/current/file.foo",
"path/to/new/destination/for/file.foo")