flask-test/lib/python3.10/site-packages/setuptools/_path.py

8 lines
176 B
Python
Raw Permalink Normal View History

2022-09-11 00:26:07 +02:00
import os
def ensure_directory(path):
"""Ensure that the parent directory of `path` exists"""
dirname = os.path.dirname(path)
os.makedirs(dirname, exist_ok=True)