python自身有乙個比較好的包 tarfile以及zipfile都可以壓縮檔案,但是當我們需要加密壓縮檔案的時候,這兩個包無法提供,根據官方資料 zipfile的setpassword 是無法設定密碼的
zipfile.setpassword(pwd):
set pwd as default password to extract encrypted files
可以看到只能用在提取加密的檔案的時候(解壓)才能有效,詳情見這裡
另闢蹊徑
利用指令碼呼叫命令並壓縮新增檔案的方式(支援linux與window),主要方式是壓縮用命令方式,解壓用zipfile並設定密碼解壓
import subprocess
import zipfile as zf
import platform as pf
import os
class zipobj():
def __init__(self,filepathname,passwd):
self.filepathname = filepathname
self.passwd = passwd.encode('utf-8')
def encrypt(self,deletesource=false):
"""壓縮加密,並刪除原資料
window系統呼叫rar程式
linux等其他系統呼叫內建命令 zip -p123 tar source
預設不刪除原檔案
"""target = self.filepathname+".zip"
source = self.filepathname+".txt"
if pf.system()=="windows":
cmd = ['rar','a','-p%s'%(self.passwd.encode('utf-8')),target,source]
p = subprocess.popen(cmd,executable=r'c:\program files\winrar\winrar.exe')
p.wait()
else:
cmd = ['zip','-p %s'%(self.passwd.encode('utf-8')),target,source]
p = subprocess.popen(cmd)
p.wait()
# os.system(" ".join(cmd))
if deletesource:
os.remove(source)
def decrypt(self):
"""使用之前先創造zipobj類
解壓檔案
"""zfile = zf.zipfile(self.filepathname+".zip")
zfile.extractall(r"zipdata",pwd=self.passwd.encode('utf-8'))
if __name__ == "__main__":
zipo = zipobj("檔名","檔案密碼")
# zipo.encrypt(deletesource=false) ##
zipo.decrypt()
如果您有更好的解決方案,希望不吝賜教!! 指令碼命令 利用 tee 命令除錯shell指令碼
在編寫shell指令碼時,除錯是個比較麻煩的事,特別是涉及到多層管道命令的時候,會產生多個中間結果,tee命令的作用是從標準輸入中讀取資料寫入標準輸出或檔案中,利用它可以從管道中讀取中間結果並寫入本地臨時檔案中,通過中間結果可以一步一步的定位到指令碼的錯誤 例項 下面是乙個簡單的指令碼,指令碼中 p...
shell指令碼 命令
命令連線符 表示不管前面是否執行成功都要執行 表示前面執行成功才執行後面 表示前面執行失敗才執行後面 read命令 read 選項 值 read p 提示語句 n 字元個數 t 時間秒 s 不顯示 運算子 expr 3 2 結果賦值 sum expr 3 2 或者 sum 3 2 乘法expr 3 ...
shell指令碼命令
1.建立檔案 home test test.log rootdir home test testfile rootdir test.log touch testfile 2.如果檔案存在則刪除檔案 if f testfile then rm rf testfile fi3.如果檔案不存在則建立檔案 ...