Python os.tmpnam() 方法



Python 方法 **tmpnam()** 返回一个用于创建临时文件的唯一路径名。

Python os.tmpnam() 方法已被弃用。

语法

以下是 Python os.tmpnam() 方法的语法:

os.tmpnam()

参数

Python os.tmpnam() 方法不接受任何参数。

返回值

Python os.tmpnam() 方法返回一个唯一的路径名。

示例

以下示例演示了 tmpnam() 方法的使用。

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
python_files_io.htm
广告