----需要在程式執行時建立乙個臨時檔案或目錄,並希望使用完之後可以自動銷毀掉。
tempfile 模組中有很多的函式可以完成這任務。為了建立乙個匿名的臨時檔案,可以使用tempfile.temporaryfile
from tempfile import temporaryfilewith temporaryfile('w+t') as f:
# read/write to the file
f.write('hello world\n')
f.write('testing\n')
# seek back to beginning and read the data
f.seek(0)
data = f.read()
# temporary file is destroyed
----還可以像這樣使用臨時檔案:
f = temporaryfile('w+t')# use the temporary file
...f.close()
# file is destroyed
temporaryfile() 的第乙個引數是檔案模式,通常來講文字模式使用w+t ,二進位制模式使用w+b 。這個模式同時支援讀和寫操作,在這裡是很有用的,因為當你關閉檔案去改變模式的時候,檔案實際上已經不存在了。temporaryfile() 另外還支援跟內建的open() 函式一樣的引數。比如:
with temporaryfile('w+t', encoding='utf-8', errors='ignore') as f:
----在大多數unix 系統上,通過temporaryfile() 建立的檔案都是匿名的,甚至連目錄都沒有。如果你想打破這個限制,可以使用namedtemporaryfile() 來代替。比如:
from tempfile import namedtemporaryfilewith namedtemporaryfile('w+t') as f:
print('filename is:', f.name)
...
----被開啟檔案的f.name 屬性包含了該臨時檔案的檔名。當你需要將檔名傳遞給其他**來開啟這個檔案的時候,這個就很有用了。和temporaryfile() 一樣,結果檔案關閉時會被自動刪除掉。如果你不想這麼做,可以傳遞乙個關鍵字引數delte=false 即可。
with namedtemporaryfile('w+t', delete=false) as f:print('filename is:', f.name)
...
----為了建立乙個臨時目錄,可以使用tempfile.temporarydirectory()
from tempfile import temporarydirectorywith temporarydirectory() as dirname:
print('dirname is:', dirname)
# use the directory
...# directory and all contents destroyed
----temporaryfile() 、namedtemporaryfile() 和temporarydirectory() 函式應該是處理臨時檔案目錄的最簡單的方式了,因為它們會自動處理所有的建立和清理步驟。在乙個更低的級別,你可以使用mkstemp() 和mkdtemp() 來建立臨時檔案和目錄。比如:
>>> import tempfile>>> tempfile.mkstemp()
(3, '/var/folders/7w/7wzl5sfzef0pljreb1umwe+++ti/-tmp-/tmp7fefhv')
>>> tempfile.mkdtemp()
'/var/folders/7w/7wzl5sfzef0pljreb1umwe+++ti/-tmp-/tmp5wvcv6'
>>>
但是,這些函式並不會做進一步的管理了。例如,函式mkstemp() 僅僅就返回乙個原始的os 檔案描述符,你需要自己將它轉換為乙個真正的檔案物件。同樣你還需要自己清理這些檔案。
----通常來講,臨時檔案在系統預設的位置被建立,比如/var/tmp 或類似的地方。為了獲取真實的位置,可以使用tempfile.gettempdir() 函式。
>>> tempfile.gettempdir()'/var/folders/7w/7wzl5sfzef0pljreb1umwe+++ti/-tmp-'
>>>
----所有和臨時檔案相關的函式都允許你通過使用關鍵字引數prefix 、suffix 和dir來自定義目錄以及命名規則。
>>> f = namedtemporaryfile(prefix='mytemp', suffix='.txt', dir='/tmp')>>> f.name
'/tmp/mytemp8ee899.txt'
>>>
C 建立臨時檔案
1.在臨時檔案只能夠建立乙個臨時檔案並返回該檔案的完整路徑 在臨時檔案只能夠建立乙個臨時檔案並返回該檔案的完整路徑 c documents and settings yourname local settings temp t e6.tmp system.io.path.gettempfilenam...
unix臨時檔案建立
看例子,建立乙個檔案,在unlink,檔案i節點的鏈結數變為0,但持有該檔案的控制代碼,依然可以fgets和fputs該檔案,說明檔案的資料塊依然存在,在fclose之後,才徹底刪除,這就是使用臨時檔案的原理 include include include include include setvb...
C建立臨時檔案
前言 linux下除了有實實在在的檔案外,還可以建立臨時的檔案和目錄,這裡介紹兩個建立臨時檔案的函式,tmpfilef和mkstemp,以及建立臨時目錄的函式mkdtemp。這三個函式具體用法如下。一 建立乙個無名的臨時檔案,程式退出時關閉臨時檔案 1 標頭檔案 include 2 函式原型 fil...