__version__ = "v1.0"
__copyright__ = "Copyright 2022"
__license__ = "MIT"
__lab__ = "Adam Cribbs lab"
import os
[docs]class folder(object):
def __init__(self, ):
pass
[docs] def osmkdir(self, DIRECTORY):
if not os.path.exists(DIRECTORY):
os.makedirs(DIRECTORY)
return 0