File size: 159 Bytes
d9814cc
 
 
 
 
1
2
3
4
5
6
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)