Source code for ewoksutils.path_utils
from typing import Union
import os
from pathlib import Path
[docs]
def makedirs_from_filename(filename: Union[str, Path]):
dirname = os.path.dirname(filename)
if dirname:
os.makedirs(dirname, exist_ok=True)