source:
branches/numpy_anuga_validation/Hinwood_2008/project.py
@
6748
Last change on this file since 6748 was 5695, checked in by , 17 years ago | |
---|---|
File size: 172 bytes |
Line | |
---|---|
1 | """Common filenames and locations. |
2 | """ |
3 | |
4 | from os import access, F_OK, mkdir |
5 | |
6 | output_dir = 'output' |
7 | |
8 | if not access(output_dir,F_OK): |
9 | mkdir (output_dir) |
Note: See TracBrowser
for help on using the repository browser.