![]() |
VOOZH | about |
Prerequisites: Shutil
When we require a backup of data, we usually make a copy of that file. Python supports file handling and allows users to handle files i.e., to read and write files, along with many other file handling options, to operate on files. Here we will learn how to copy a file using Python3.
Method 1 : Using shutil library
shutil library includes a method call copyfile(). The method takes two parameters, one is source path of file and other is destination path of file. The following image includes a file with its path.
Syntax:
copyfile(source_path,destination_path)
Program:
Output:
Method 2 : copying data of file into another file
Copying data of one file to another file could also create a backup of file. Suppose the data of file is as below:
Program:
Output: