Files
gobot/gobotrpc/generator/src/util.py
AlexanderHD27 346e6a52b7 Started implementing cpp
generation
2025-01-12 15:57:29 +01:00

4 lines
111 B (Stored with Git LFS)
Python

from pathlib import Path
def create_directory_path(p: str):
Path(p).mkdir(parents=True, exist_ok=True)