Python3 os.tmpnam()方法

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

語法

下面是使用 tmpnam()方法的語法:
os.tmpnam()

引數

  • NA

返回值

這個方法返回一個唯一的路徑名。

範例

下面的例子說明了如何使用使用 tmpnam()方法。
# !/usr/bin/python3

import os, sys

# Temporary file generated in current directory
tmpfn = os.tmpnam()

print "This is the unique path:"
print tmpfn
當我們執行上面的程式,它會產生以下結果:
This is the unique path:
/tmp/fileUFojpd