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)