shutil.copyfile code example
Example 1: python copy file
from shutil import copyfile
copyfile(src, dst)
Example 2: shutil copyfile python
# Source path
source = "/home/User/Documents/file.txt"
# Destination path
destination = "/home/User/Documents/file(copy).txt"
# Copy the content of
# source to destination
dest = shutil.copyfile(source, destination)