timmy / 使用 tempfile 建立與管理暫存檔案

1 вподобань
0 форк(-ів)
1 файл(-ів)
Остання активність 10 months ago
此程式使用 tempfile.NamedTemporaryFile 建立暫存檔案,寫入內容並獲取檔案路徑,適用於臨時資料儲存、測試與文件處理應用。
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
Новіше Пізніше