Get a temporary directory
()
| 67 | |
| 68 | |
| 69 | def get_tempdir(): |
| 70 | """Get a temporary directory""" |
| 71 | tmpdir = tempfile.mkdtemp(suffix=TMPSUFFIX) |
| 72 | os.chmod(tmpdir, 0o755) |
| 73 | return tmpdir |
| 74 | |
| 75 | |
| 76 | def create_random_file(directory, content=None, |
no outgoing calls