Python os.tempnam() 方法
python os.tempnam() 方法
os.tempnam() 方法用于返回唯一的路徑名用于創(chuàng)建臨時文件。
語法
tempnam()方法語法格式如下:
os.tempnam(dir, prefix)
參數(shù)
- dir -- 要創(chuàng)建的臨時文件路徑。
- prefix -- 臨時文件前綴
返回值
該方法返回唯一路徑。
實例
以下實例演示了 tempnam() 方法的使用:
#!/usr/bin/python # -*- coding: utf-8 -*- import os, sys # 前綴為 runoob 的文件 tmpfn = os.tempnam('/tmp/runoob','runoob') print "這是一個唯一路徑:" print tmpfn
執(zhí)行以上程序輸出結(jié)果為:
這是一個唯一路徑: /tmp/runoob/runoobibaco8
相關(guān)文章
- Python 環(huán)境搭建
- Python 基礎(chǔ)語法
- Python 運算符
- Python 循環(huán)語句
- Python pass 語句
- Python 函數(shù)
- Python 正則表達式
- Python SMTP發(fā)送郵件
- Python 二維數(shù)組
- Python 鏈表
- Python 圖算法
- Python3 環(huán)境搭建
- Python3 數(shù)字(Number)
- Python3 元組(Tuple)
- Python3 for while 循環(huán)語句
- Python3 文件讀寫
- Python3 OS 文件/目錄方法
- Python3 錯誤和異常
- Python3 日期和時間
- Python3 內(nèi)置函數(shù)