source:
trunk/anuga_validation/Hinwood_2008/project.py
@
8831
Last change on this file since 8831 was 5695, checked in by duncan, 16 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.