How to create a duplicate file of an existing file using Python?
Last Updated :
26 Oct, 2021
In this article, we will discuss how to create a duplicate of the existing file in Python. Below are the source and destination folders, before creating the duplicate file in the destination folder.
After a duplicate file has been created in the destination folder, it looks like the image below.
For automating of copying and removal of files in Python, shutil module is used. It offers a number of high-level operations on files and collections of files. Using shutil module, we can copy files as well as an entire directory.
It copies the contents of the source file to the destination file in the most efficient way possible. It does not use file objects and also does not copy metadata and permissions.
Syntax : shutil.copyfile(src, dst, *, follow_symlinks=True)
Parameters:
- src - src here is the complete path of the source file.
- dest - dest is the complete path of the destination file or directory.The destination location must be writable.
- follow_symlinks (optional) - The default value of this parameter is True. If it is set to False and src is a symbolic link, a new symbolic link will be created instead of copying the file src points to.
Return Type:- It returns the path of the newly created duplicate file.
Code:
Python3
# Python program to create the duplicate of
# an already existing file
import os
D = r"F:\Dest"
# importing the shutil module
import shutil
print("Before copying file:")
print(os.listdir(D))
# src contains the path of the source file
src = r"C:\Users\YASH\OneDrive\Desktop\small\Src\Test.py"
# dest contains the path of the destination file
dest = r"F:\Dest\Test.py"
# create duplicate of the file at the destination,
# with the name mentioned
# at the end of the destination path
# if a file with the same name doesn't already
# exist at the destination,
# a new file with the name mentioned is created
path = shutil.copyfile(src,dest)
print("After copying file:")
print(os.listdir(D))
# print path of the newly created duplicate file
print("Path of the duplicate file is:")
print(path)
Output:
Before copying the file:
['in.txt', 'out.txt']
After copying the file:
['in.txt', 'out.txt', 'Test.py']
Path of the duplicate file is:
F:\Dest\Test.py
It also copies the contents of the source file to the destination file or directory. Unlike copyfile(), shutil.copy() also copies the permissions of the source file.
Syntax : shutil.copy(src, dst, *, follow_symlinks=True)
Parameters:-
- src - src here is the complete path of the source file.
- dest - dest is the complete path of the destination file or directory.The destination location must be writable.
- follow_symlinks (optional) - The default value of this parameter is True. If it is set to False and src is a symbolic link, a new symbolic link will be created instead of copying the file src points to.
Return Type:- It returns the path of the newly created duplicate file.
Code:
Python3
# Python program to create the duplicate of
# an already existing file
import os, stat
D = r"F:\Dest"
# importing the shutil module
import shutil
print("Before copying file:")
print(os.listdir(D))
# src contains the path of the source file
src=r"C:\Users\YASH\OneDrive\Desktop\small\Src\Test.py"
# changing the permission(Read, write, and execute
# by others)
# of the source file
os.chmod(src, stat.S_IRWXO)
# dest contains the path of the destination file
dest = r"F:\Dest\Test.py"
# create duplicate of the file at the
# destination, with the name mentioned
# at the end of the destination path
# if a file with the same name doesn't
# already exist at the destination,
# a new file with the name mentioned is created
path = shutil.copy(src,dest)
# checking the permission of
# the duplicate file to see if the
# permissions have also been copied
# check the permission(Read, write, and execute
# by others)
# of the duplicate file
print(os.access(path, stat.S_IRWXO))
print("After copying file:")
print(os.listdir(D))
# print path of the newly created duplicate file
print("Path of the duplicate file is:")
print(path)
Output:
Before copying the file:
['in.txt', 'out.txt']
After copying the file:
False
['in.txt', 'out.txt', 'Test.py']
Path of the duplicate file is:
F:\Dest\Test.py
It is almost similar to shutil.copy(), except copy2() also attempts to preserve metadata. When follow_symlinks is set to False, and src is a symbolic link, copy2() attempts to copy all metadata from the src symbolic link to the newly-created dst symbolic link.
Syntax : shutil.copy2(src, dst, *, follow_symlinks=True)
Parameters:
- src - src here is the complete path of the source file.
- dest - dest is the complete path of the destination file or directory.The destination location must be writable.
- follow_symlinks (optional) - The default value of this parameter is True. If it is set to False and src is a symbolic link, a new symbolic link will be created instead of copying the file src points to.
Return Type:- It returns the path of the newly created duplicate file.
Code:
Python3
# Python program to create the duplicate of an already
# existing file
import os
D = r"F:\Dest"
# importing the shutil module
import shutil
print("Before copying file:")
print(os.listdir(D))
# src contains the path of the source file
src=r"C:\Users\YASH\OneDrive\Desktop\small\Src\Test.py"
# dest contains the path of the destination file
dest = r"F:\Dest\Test.py"
# using copy2()
path=shutil.copy2(src,dest)
# A new duplicate file is added at
# the destination with name we mention
# on the path
print("After copying file:")
print(os.listdir(D))
# print path of the newly created duplicate file
print("Path of the duplicate file is:")
print(path)
Output:
Before copying the file:
['in.txt', 'out.txt']
After copying the file:
['in.txt', 'out.txt', 'Test.py']
Path of the duplicate file is:
F:\Dest\Test.py
Similar Reads
Create an empty file using Python File handling is a very important concept for any programmer. It can be used for creating, deleting, and moving files, or to store application data, user configurations, videos, images, etc. Python too supports file handling and allows users to handle files i.e., to read and write files, along with
3 min read
Copy all files from one directory to another using Python Copying files from one directory to another involves creating duplicates of files and transferring them from one folder to another. This is helpful when organizing files, backing them up, or moving them to different locations on your computer. Letâs explore various methods to do this efficiently.Usi
2 min read
How to create filename containing date or time in Python Prerequisite: DateTime module In this article, we are going to see how to create filenames with dates or times using Python. For this, we will use the DateTime module. First, import the module and then get the current time with datetime.now() object. Now convert it into a string and then create a f
2 min read
Create temporary files and directories using tempfile Python tempfile module allows you to create a temporary file and perform various operations on it. Temporary files may be required when we need to store data temporarily during the program's execution or when we are working with a large amount of data. These files are created with unique names and s
5 min read
Deleting Duplicate Files Using Python In this article, we are going to use a concept called hashing to identify unique files and delete duplicate files using Python. Modules required:tkinter: We need to make a way for us to select the folder in which we want to do this cleaning process so every time we run the code we should get a file
5 min read