proofyx / utils /io_utils.py
muhammedsayeedurrahman's picture
Initial commit: AI Authenticity Checker
a434b46
Raw
History Blame Contribute Delete
71 Bytes
import os
def ensure_dir(path):
os.makedirs(path, exist_ok=True)