import shutil
# Define the source file path
source_file = 'path/to/source/folder/text.sav'
# Define the destination server location
destination_server = 'path/to/destination/server/save/'
# Copy the file to the destination server
shutil.copy(source_file, destination_server)