source: anuga_validation/Hinwood_2008/project.py @ 5716

Last change on this file since 5716 was 5695, checked in by duncan, 16 years ago

Get the output directory going

File size: 172 bytes
Line 
1"""Common filenames and locations.
2"""
3
4from os import access, F_OK, mkdir
5
6output_dir = 'output'
7
8if not access(output_dir,F_OK):
9            mkdir (output_dir) 
Note: See TracBrowser for help on using the repository browser.