daveckw's picture
Edited
d9814cc
raw
history blame contribute delete
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)