Python 3 - os.tmpnam() 方法

  • 描述

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