Answers for "python how to move file to another directory"

5

python how move file to directory

import shutil, os
files = ['file1.txt', 'file2.txt', 'file3.txt']
for f in files:
    shutil.move(f, 'dest_folder')
Posted by: Guest on April-13-2021

Code answers related to "python how to move file to another directory"

Python Answers by Framework

Browse Popular Code Answers by Language