create_temporary_file_example.py
· 485 B · Python
原始檔案
import tempfile
# 使用 NamedTemporaryFile 建立暫存檔案
with tempfile.NamedTemporaryFile(delete=False) as temp_file:
# 在暫存檔案中寫入一些內容
temp_file.write(b'Hello, this is a temporary file example.')
# 獲取暫存檔案的路徑
temp_file_path = temp_file.name
# 在這裡可以進行對暫存檔案的操作,例如讀取或修改內容
# 暫存檔案會在離開上下文管理器後自動刪除,因為 delete 參數預設為 True
| 1 | import tempfile |
| 2 | |
| 3 | # 使用 NamedTemporaryFile 建立暫存檔案 |
| 4 | with tempfile.NamedTemporaryFile(delete=False) as temp_file: |
| 5 | # 在暫存檔案中寫入一些內容 |
| 6 | temp_file.write(b'Hello, this is a temporary file example.') |
| 7 | |
| 8 | # 獲取暫存檔案的路徑 |
| 9 | temp_file_path = temp_file.name |
| 10 | |
| 11 | # 在這裡可以進行對暫存檔案的操作,例如讀取或修改內容 |
| 12 | |
| 13 | # 暫存檔案會在離開上下文管理器後自動刪除,因為 delete 參數預設為 True |
| 14 |