From b0177a07f2bd40476db3de418184698b84e172cf Mon Sep 17 00:00:00 2001 From: pcain-usgs <pcain@usgs.gov> Date: Mon, 8 Jul 2019 13:35:39 -0600 Subject: [PATCH] Fixes issue 121 Ensures that the specified directory exists before wiriting file to directory. If the directory doesn't exist, a new one is created to store the written file. --- geomagio/imfv283/GOESIMFV283Factory.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/geomagio/imfv283/GOESIMFV283Factory.py b/geomagio/imfv283/GOESIMFV283Factory.py index 2061693a9..4a82c8135 100644 --- a/geomagio/imfv283/GOESIMFV283Factory.py +++ b/geomagio/imfv283/GOESIMFV283Factory.py @@ -3,6 +3,7 @@ from __future__ import absolute_import, print_function from .IMFV283Factory import IMFV283Factory import subprocess +import sys from obspy.core import Stream import os @@ -180,7 +181,11 @@ class GOESIMFV283Factory(IMFV283Factory): buf.append('RETRANSMITTED: N\n') buf.append('ASCENDING_TIME: false\n') buf.append('RT_SETTLE_DELAY: true\n') - if os.path.exists(criteria_file) is not True: return + + criteria_dir = os.path.dirname(criteria_file) + if not os.path.exists(criteria_dir): + os.makedirs(criteria_dir) + with open(criteria_file, 'wb') as fh: fh.write(''.join(buf)) - fh.close() \ No newline at end of file + fh.close() -- GitLab