佳木斯湛栽影视文化发展公司

主頁 > 知識(shí)庫 > 純vbs實(shí)現(xiàn)zip壓縮與unzip解壓縮函數(shù)代碼

純vbs實(shí)現(xiàn)zip壓縮與unzip解壓縮函數(shù)代碼

熱門標(biāo)簽:美圖手機(jī) 銀行業(yè)務(wù) 網(wǎng)站文章發(fā)布 服務(wù)器配置 鐵路電話系統(tǒng) 呼叫中心市場(chǎng)需求 智能手機(jī) 檢查注冊(cè)表項(xiàng)

壓縮代碼:

復(fù)制代碼 代碼如下:

Zip "D:\test.iso", "D:\test.zip"
Zip "D:\test", "D:\test.zip"
Msgbox "OK"

Sub Zip(ByVal mySourceDir, ByVal myZipFile)
Set fso = CreateObject("Scripting.FileSystemObject")
If fso.GetExtensionName(myZipFile) > "zip" Then
Exit Sub
ElseIf fso.FolderExists(mySourceDir) Then
FType = "Folder"
ElseIf fso.FileExists(mySourceDir) Then
FType = "File"
FileName = fso.GetFileName(mySourceDir)
FolderPath = Left(mySourceDir, Len(mySourceDir) - Len(FileName))
Else
Exit Sub
End If
Set f = fso.CreateTextFile(myZipFile, True)
f.Write "PK" Chr(5) Chr(6) String(18, Chr(0))
f.Close
Set objShell = CreateObject("Shell.Application")
Select Case Ftype
Case "Folder"
Set objSource = objShell.NameSpace(mySourceDir)
Set objFolderItem = objSource.Items()
Case "File"
Set objSource = objShell.NameSpace(FolderPath)
Set objFolderItem = objSource.ParseName(FileName)
End Select
Set objTarget = objShell.NameSpace(myZipFile)
intOptions = 256
objTarget.CopyHere objFolderItem, intOptions
Do
WScript.Sleep 1000
Loop Until objTarget.Items.Count > 0
End Sub

解壓縮代碼:
復(fù)制代碼 代碼如下:

UnZip "D:\test.iso", "D:\test.zip"
Msgbox "OK"

Sub CopyFolder(ByVal mySourceDir, ByVal myTargetDir)
Set fso = CreateObject("Scripting.FileSystemObject")
If NOT fso.FolderExists(mySourceDir) Then
Exit Sub
ElseIf NOT fso.FolderExists(myTargetDir) Then
fso.CreateFolder(myTargetDir)
End If
Set objShell = CreateObject("Shell.Application")
Set objSource = objShell.NameSpace(mySourceDir)
Set objFolderItem = objSource.Items()
Set objTarget = objShell.NameSpace(myTargetDir)
intOptions = 256
objTarget.CopyHere objFolderItem, intOptions
End Sub

用VBS解壓ZIP文件,網(wǎng)上搜到的多數(shù)是調(diào)用WinRAR,一點(diǎn)技術(shù)含量也沒有。Google一下“VBS 解壓ZIP”,第二是搜搜問問“vbs實(shí)現(xiàn)解壓縮zip文件”,滿意答案是“所以想用vbs來解壓這兩種格式的文件,至少要有兩種命令行解壓工具,否則是絕對(duì)不可以的”。絕對(duì)不可以的,回答的人好自信啊,笑而不語~
原文:http://demon.tw/programming/vbs-zip-file.html
http://demon.tw/programming/vbs-unzip-file.html

標(biāo)簽:樂山 新疆 上海 沈陽 河南 長(zhǎng)治 滄州 紅河

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《純vbs實(shí)現(xiàn)zip壓縮與unzip解壓縮函數(shù)代碼》,本文關(guān)鍵詞  ;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 收縮
    • 微信客服
    • 微信二維碼
    • 電話咨詢

    • 400-1100-266
    定远县| 清远市| 德令哈市| 古丈县| 汨罗市| 义马市| 陵水| 城口县| 同仁县| 阿鲁科尔沁旗| 兰西县| 永登县| 深州市| 德江县| 新巴尔虎左旗| 湘阴县| 临城县| 绥中县| 乌兰浩特市| 库车县| 新安县| 手机| 绥芬河市| 海伦市| 黑龙江省| 屏南县| 永城市| 金湖县| 建德市| 屯留县| 盘山县| 屏东市| 大荔县| 浦城县| 轮台县| 神农架林区| 福贡县| 北京市| 常德市| 新丰县| 长寿区|