daveckw's picture
Upload 23 files
a71ebd1
raw
history blame
159 Bytes
import shutil
def move_file(src_path, dest_folder):
# Move the file from the source path to the destination folder
shutil.move(src_path, dest_folder)