xxxxxxxxxx
import shutil
# Define the file path and destination
file_path = '/content/sample_data/example.txt' # Replace with your file path
destination_path = '/content/destination_folder/' # Replace with your destination path
# Move the file to the new location
shutil.move(file_path, destination_path)