File size: 435 Bytes
b84549f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
import os
import pathlib
def ensure_dir(file_path: str):
"""Create it if the directory of :attr:`file_path` is not existed.
Args:
file_path (str): Target file path.
"""
if isinstance(file_path, pathlib.Path):
file_path = str(file_path)
if not os.path.isdir(file_path):
file_path = os.path.dirname(file_path)
if not os.path.exists(file_path):
os.makedirs(file_path)
|