ma_cisco_malware/utils.py

7 lines
93 B
Python

import os
def exists_or_make_path(p):
if not os.path.exists(p):
os.makedirs(p)