Source code for dl_utils.fs.dir

# -*- coding: utf-8 -*-
# @Time    : 7/17/25
# @Author  : Yaojie Shen
# @Project : Deep-Learning-Utils
# @File    : dir.py

from pathlib import Path

from ..type_hint import PathLike


[docs] def make_parent_dirs(path: PathLike): Path(path).parent.mkdir(parents=True, exist_ok=True)
__all__ = ["make_parent_dirs"]