telegram-s3-uploader/utils/helpers.py

5 lines
75 B
Python

import os
def ensure_dir(path: str):
os.makedirs(path, exist_ok=True)