source:
anuga_validation/Hinwood_2008/project.py
@
6982
Last change on this file since 6982 was 5695, checked in by , 17 years ago | |
---|---|
File size: 172 bytes |
Rev | Line | |
---|---|---|
[5694] | 1 | """Common filenames and locations. |
2 | """ | |
[5695] | 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.