今天就跟大家聊聊有關(guān)使用tempfile庫(kù)怎么創(chuàng)建一個(gè)python進(jìn)程中的臨時(shí)文件,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
網(wǎng)站建設(shè)哪家好,找創(chuàng)新互聯(lián)建站!專(zhuān)注于網(wǎng)頁(yè)設(shè)計(jì)、網(wǎng)站建設(shè)、微信開(kāi)發(fā)、微信平臺(tái)小程序開(kāi)發(fā)、集團(tuán)企業(yè)網(wǎng)站建設(shè)等服務(wù)項(xiàng)目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了徐聞免費(fèi)建站歡迎大家使用!tempfile
一般是python內(nèi)置的一個(gè)函數(shù)庫(kù),不需要單獨(dú)安裝,這里我們直接介紹一下其常規(guī)使用方法:
# tempfile_test.py import tempfile file = tempfile.NamedTemporaryFile() name = str(file.name) file.write('This is the first tmp file!'.encode('utf-8')) file.close() print (name)
上述代碼執(zhí)行的任務(wù)為:使用tempfile.NamedTemporaryFile
創(chuàng)建一個(gè)臨時(shí)文件,其文件名采用的是隨機(jī)化的字符串格式,作為name
這樣的一個(gè)屬性來(lái)調(diào)用。通過(guò)執(zhí)行這個(gè)任務(wù),我們可以查看一般是生成什么樣格式的臨時(shí)文件:
[dechin@dechin-manjaro tmp_file]$ python3 tempfile_test.py /tmp/tmppetcksa8 [dechin@dechin-manjaro tmp_file]$ ll 總用量 4 -rw-r--r-- 1 dechin dechin 181 1月 27 21:39 tempfile_test.py [dechin@dechin-manjaro tmp_file]$ cat /tmp/tmppetcksa8 cat: /tmp/tmppetcksa8: 沒(méi)有那個(gè)文件或目錄
在這個(gè)python代碼的執(zhí)行過(guò)程中,產(chǎn)生了tmppetcksa8
這樣的一個(gè)文件,我們可以向這個(gè)文件中直接write
一些字符串。這個(gè)臨時(shí)文件被存儲(chǔ)在tmp
目錄下,與當(dāng)前的執(zhí)行路徑無(wú)關(guān)。同時(shí)執(zhí)行結(jié)束之后我們發(fā)現(xiàn),產(chǎn)生的這個(gè)臨時(shí)文件被刪除了,這是NamedTemporaryFile
自帶的一個(gè)delete
的屬性,默認(rèn)配置是關(guān)閉臨時(shí)文件后直接刪除。
需要持久化保存臨時(shí)文件是非常容易的,只需要將上述章節(jié)中的delete
屬性設(shè)置為False
即可:
# tempfile_test.py import tempfile file = tempfile.NamedTemporaryFile(delete=False) name = str(file.name) file.write('This is the first tmp file!'.encode('utf-8')) file.close() print (name)
這里我們的變動(dòng),只是在括號(hào)中加上了delete=True
這一設(shè)定,這個(gè)設(shè)定可以允許我們持久化的存儲(chǔ)臨時(shí)文件:
[dechin@dechin-manjaro tmp_file]$ python3 tempfile_test.py /tmp/tmpwlt27ryk [dechin@dechin-manjaro tmp_file]$ cat /tmp/tmpwlt27ryk This is the first tmp file!
在有些場(chǎng)景下對(duì)于臨時(shí)文件的存儲(chǔ)有一定的格式要求,比如后綴等,這里我們將臨時(shí)文件的后綴設(shè)置為常用的txt
格式,同樣的,只需要在NamedTemporaryFile
的參數(shù)中進(jìn)行配置即可:
# tempfile_test.py import tempfile file = tempfile.NamedTemporaryFile(delete=False, suffix='.txt') name = str(file.name) file.write('This is the first tmp file!'.encode('utf-8')) file.close() print (name)
由于還是設(shè)置了delete=True
參數(shù),因此該臨時(shí)txt
文件被持久化的保存在系統(tǒng)中的/tmp
目錄下:
[dechin@dechin-manjaro tmp_file]$ python3 tempfile_test.py /tmp/tmpk0ct_kzs.txt [dechin@dechin-manjaro tmp_file]$ cat /tmp/tmpk0ct_kzs.txt This is the first tmp file!
看完上述內(nèi)容,你們對(duì)使用tempfile庫(kù)怎么創(chuàng)建一個(gè)python進(jìn)程中的臨時(shí)文件有進(jìn)一步的了解嗎?如果還想了解更多知識(shí)或者相關(guān)內(nèi)容,請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝大家的支持。
文章名稱(chēng):使用tempfile庫(kù)怎么創(chuàng)建一個(gè)python進(jìn)程中的臨時(shí)文件-創(chuàng)新互聯(lián)
當(dāng)前路徑:http://jinyejixie.com/article4/dehoie.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供響應(yīng)式網(wǎng)站、標(biāo)簽優(yōu)化、外貿(mào)建站、移動(dòng)網(wǎng)站建設(shè)、搜索引擎優(yōu)化、網(wǎng)站策劃
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容