os.tempnam(dir, prefix)
dir -- 這是臨時檔案的名稱將要建立的目錄
prefix -- 這是在產生臨時檔案名的字首
# !/usr/bin/python3 import os, sys # prefix is tuts1 of the generated file tmpfn = os.tempnam('/tmp/tutorialsdir,'tuts1') print "This is the unique path:" print tmpfn
This is the unique path: /tmp/tutorialsdir/tuts1IbAco8