Languages
[Edit]
EN

Python - create multiple subfolders from list

0 points
Created by:
marc_so
1104

In this article, we would like to show you how to create multiple subfolders from a list in Python.

Quick solution:

Note:

The exist_ok parameter was added in Python 3.5. Set it on True so you won't get FileExistsError if the directory exists.

 

Practical example

Edit

In this example, we create a directory ("example_directory") with multiple subfolders in our project directory using makedirs() method from os module. The subfolders names will be taken from the list.

if you want to create multiple subfolders outside the project folder, you need to specify the full path:

result:

Python - create multiple subfolders from list - before
Python - create multiple subfolders from list - before
Python - create multiple subfolders from list - after
Python - create multiple subfolders from list - after

References

Edit
1
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join