Python os.tempnam() 方法



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

从 Python 3.0 版本开始,os.tempnam() 方法已被弃用。

语法

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

os.tempnam(dir, prefix)

参数

Python os.tempnam() 接受以下参数:

  • dir - 这是将创建临时文件名所在的目录。

  • prefix - 这是生成的临时文件名的前缀。

返回值

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

示例

以下示例显示了 tempnam() 方法的用法。

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