Files
6CAR/prebuilts/windows/python-3.7.0/lib/site-packages/setuptools/_path.py
2026-04-18 09:16:58 +08: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)