source: anuga_validation/Hinwood_2008/project.py @ 7258

Last change on this file since 7258 was 5695, checked in by duncan, 17 years ago

Get the output directory going

File size: 172 bytes
RevLine 
[5694]1"""Common filenames and locations.
2"""
[5695]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.