Python3 os.tempnam()方法

2019-10-16 23:09:23
tempnam()方法的返回一個唯一的路徑名稱,用於建立一個臨時檔案。

語法

以下是 tempnam()方法的語法:
os.tempnam(dir, prefix)

引數

  • dir -- 這是臨時檔案的名稱將要建立的目錄

  • prefix -- 這是在產生臨時檔案名的字首

返回值

該方法返回一個唯一的路徑。

範例

下面的例子顯示 tempnam()方法的使用。
# !/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