Python3 os.tmpfile()方法

2019-10-16 23:09:24
tmpfile()方法返回以更新模式開啟 (w+b) 新臨時檔案的物件。該檔案有沒有與之關聯的目錄項,當沒有檔案描述符將被自動刪除。

語法

以下是 tmpfile() 方法的語法:
os.tmpfile

語法

  • NA

返回值

該方法返回一個新的臨時檔案物件

範例

下面的範例顯示 tmpfile() 方法的使用。
# !/usr/bin/python3

import os

# The file has no directory entries associated with it and will be
# deleted automatically once there are no file descriptors.
tmpfile = os.tmpfile()
tmpfile.write('Temporary newfile is here.....')
tmpfile.seek(0)

print tmpfile.read()
tmpfile.close
當我們執行上面的程式,它會產生以下結果:
Temporary newfile is here.....