ma_cisco_malware/utils.py

7 lines
93 B
Python
Raw Normal View History

2017-07-29 19:47:02 +02:00
import os
def exists_or_make_path(p):
if not os.path.exists(p):
os.makedirs(p)