全部 新建

user:thomas 由使用者建立的 Gists

title:mygist Gists 的標題

filename:myfile.txt Gists 的檔案名稱

extension:yml Gists 的副檔名

language:go Gists 的程式語言

topic:homelab gists with given topic

登錄


全部 新建 登錄

All gists matching topic tempfile

倒序排序 創建
順序排序 創建
倒序排序 更新
順序排序 更新

timmy / 使用 tempfile 建立臨時檔案與目錄

0 喜歡
0 分支
3 檔案
最後活躍 9 months ago
tempfile 模組可用於建立臨時檔案或目錄,在程式執行期間存儲暫時資料,並確保在程式結束後自動清理,適用於 測試、快取、臨時儲存 等場景。
os process-management python tempfile temporary-file
1 import tempfile
2 import os
3
4 with tempfile.TemporaryDirectory() as temp_dir:
5 pid = os.getpid() # 取得當前進程 ID
6 temp_file = os.path.join(temp_dir, f"process_{pid}.txt")
7
8 # 建立並寫入臨時檔案
9 with open(temp_file, "w") as f:
10 f.write(f"這是進程 {pid} 的臨時檔案")

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

1 喜歡
0 分支
1 檔案
最後活躍 10 months ago
此程式使用 tempfile.NamedTemporaryFile 建立暫存檔案,寫入內容並獲取檔案路徑,適用於臨時資料儲存、測試與文件處理應用。
automation file-handling python tempfile temporary-files testing
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
上一頁 下一頁

由 Opengist 提供支持 ⋅ Load: 44ms⋅

繁體中文
Čeština Deutsch English Español Français Magyar Italiano 日本語 Polski Português Русский Türkçe Українська 中文 繁體中文