

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to copy certain files from one folder to another using Python?
The shutil module provides functions for copying files, as well as entire folders. For copying multiple files at once, you'll have to have a list of all files you want to copy and loop over them to copy them.
Calling shutil.copy(source, destination) will copy the file at the path source to the folder at the path destination. (Both source and destination are strings.) If destination is a filename, it will be used as the new name of the copied file. This function returns a string of the path of the copied file.
example
import shutil, os files = ['file1.txt', 'file2.txt', 'file3.txt'] for f in files: shutil.copy(f, 'dest_folder')
- Related Questions & Answers
- How to copy files from one folder to another using Python?
- How to copy files from one server to another using Python?
- How to move a file from one folder to another using Python?
- How to Copy files or Folder without overwriting existing files?
- How to copy items from one location to another location using PowerShell?
- How we can copy Python modules from one system to another?
- How to copy a table from one MySQL database to another?
- How to copy rows from one table to another in MySQL?
- How to copy Docker images from one host to another without using a repository?
- Copy values from one array to another in Numpy
- How to copy a collection from one database to another in MongoDB?
- How to copy the palette from one image to another using imagepalettecopy() function in PHP?
- Java Program to copy value from one list to another list
- How to copy files to a new directory using Python?
- How to read multiple text files from a folder in Python?(Tkinter)
Advertisements