Spaces:
Running
Running
File size: 216 Bytes
b77c0a2 |
1 2 3 4 5 6 7 8 |
import os
from config import DATA_DIR, UPLOAD_DIR, OUTPUT_DIR
def create_directories():
os.makedirs(DATA_DIR, exist_ok=True)
os.makedirs(UPLOAD_DIR, exist_ok=True)
os.makedirs(OUTPUT_DIR, exist_ok=True)
|