4 lines
111 B (Stored with Git LFS)
Python
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) |