Python 3 - os.tempnam() 方法

  • 描述

    方法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