mirror of
https://github.com/Ahp06/SUMO_Emissions.git
synced 2024-11-21 19:16:30 +00:00
Check whether logdir exists before creating it
This commit is contained in:
parent
00646d0135
commit
9bfc30d31d
@ -30,6 +30,7 @@ def generate_scenario(out_path, name):
|
||||
shutil.copyfile(os.path.join(STATICDIR, 'simul.sumocfg'), os.path.join(out_path, f'{name}.sumocfg'))
|
||||
# Move log files
|
||||
logdir = os.path.join(out_path, 'log')
|
||||
if not os.path.exists(logdir):
|
||||
os.mkdir(logdir)
|
||||
for f in os.listdir(STATICDIR):
|
||||
if f.endswith('.log'):
|
||||
|
Loading…
Reference in New Issue
Block a user