aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils/mkdtemp
blob: b4cb2a1b49a665efafeaecf135604cdfaff5bce6 (plain) (blame)
1
2
3
4
5
6
7
#!/usr/bin/python

import tempfile
from os.path import expanduser

home = expanduser("~")
tempfile.mkdtemp(prefix='TDIU16', dir=home)