1. 程式人生 > >Python程式設計:tempfile建立零時檔案

Python程式設計:tempfile建立零時檔案

tempfile需要的時候建立零時檔案,關閉之後就被刪除了

import tempfile

import os

# 建立檔案
file = tempfile.TemporaryFile(mode="w+")
print(file.name)
# 4

print(os.path.exists(file.name))
# True

# 寫入、讀取操作
file.write("hello world")

file.seek(0)
print(file.read())
# hello world

# 關閉資源
file.close()

print(os.path.exists(
file.name)) # False

參考: https://docs.python.org/3/library/tempfile.html