I have a folder containing several text files. How would I go about using python to make a copy of everyone of those files and put the copies in a new folder?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Source: docs.python.org |
|||
|
|
|
You can use the glob module to select your .txt files:
The |
|||
|
|
|
I would suggest looking at this post: How do I copy a file in python?
That should do it. |
|||||||||||||
|
|
The following Python code will create a destination directory, followed by copying all files that end in .txt to the destination directory, folder1.
|
||||
|
|