monsterwell/venv/lib/python3.10/site-packages/setuptools/_path.py
2022-12-23 13:18:32 +00:00

8 lines
176 B
Python

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)