diff options
author | Navan Chauhan <navanchauhan@gmail.com> | 2020-07-31 22:19:38 +0530 |
---|---|---|
committer | Navan Chauhan <navanchauhan@gmail.com> | 2020-07-31 22:19:38 +0530 |
commit | 9a253f896fba757778370c8ad6d40daa3b4cdad0 (patch) | |
tree | 2257187cdbc4c2085fb14df8bbb2e6ae6679c3e4 /lstm_chem/utils/dirs.py | |
parent | 61ce4e7b089d68395be2221f64d89040c0b14a34 (diff) |
added Curie-Generate BETA
Diffstat (limited to 'lstm_chem/utils/dirs.py')
-rwxr-xr-x | lstm_chem/utils/dirs.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lstm_chem/utils/dirs.py b/lstm_chem/utils/dirs.py new file mode 100755 index 0000000..bcd2a49 --- /dev/null +++ b/lstm_chem/utils/dirs.py @@ -0,0 +1,12 @@ +import os +import sys + + +def create_dirs(dirs): + try: + for dir_ in dirs: + if not os.path.exists(dir_): + os.makedirs(dir_) + except Exception as err: + print(f'Creating directories error: {err}') + sys.exit() |