🎉 I'm releasing 12 products in 12 months! If you love product, checkout my new blog workingoutloud.dev

Back to home

Tip: Making Directories Recursively With Python

This is Day 8 of the #100DaysOfPython challenge.

Today's post is a quick overview of making directories recursively (if they do not exist).

Getting started

Let's create the hello-recursive-dirs directory and install Pillow.

# Make the `hello-recursive-dirs` directory $ mkdir hello-recursive-dirs $ cd hello-recursive-dirs # Create a file for our script $ touch main.py

Using the OS module to create folders recursively

The OS library has a function makedirs that can be used to make directories recursively.

In this example, let's create the folder tmp/deep/folder.

Add the following code to main.py:

import os new_folder_name = 'tmp/deep/folder' if not os.path.exists(new_folder_name): os.makedirs(new_folder_name)

Run the script with python main.py and confirm that the folder was created.

Resources and further reading

  1. OS.makedirs

Photo credit: pawel_czerwinski

Personal image

Dennis O'Keeffe

@dennisokeeffe92
  • Melbourne, Australia

Hi, I am a professional Software Engineer. Formerly of Culture Amp, UsabilityHub, Present Company and NightGuru.
I am currently working on Visibuild.

1,200+ PEOPLE ALREADY JOINED ❤️️

Get fresh posts + news direct to your inbox.

No spam. We only send you relevant content.

Tip: Making Directories Recursively With Python

Introduction

Share this post