Files
SMPLer-X/common/utils/dir.py
T
caizhongang 857a3ecbae Init commit
2023-06-15 00:22:11 +08:00

11 lines
182 B
Python

import os
import sys
def make_folder(folder_name):
os.makedirs(folder_name, exist_ok=True)
def add_pypath(path):
if path not in sys.path:
sys.path.insert(0, path)