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

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

熱門標簽:辦理膠州400電話財稅 百度地圖標注怎么卸載 打電話的外呼系統(tǒng)貴不貴 陜西高頻外呼回撥系統(tǒng)哪家好 海外美發(fā)店地圖標注 加盟電銷機器人好的品牌 新密防封卡外呼系統(tǒng)違法嗎 外呼營銷下單系統(tǒng) 前鋒辦理400電話申請

壓縮代碼:

復(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,一點技術(shù)含量也沒有。Google一下“VBS 解壓ZIP”,第二是搜搜問問“vbs實現(xiàn)解壓縮zip文件”,滿意答案是“所以想用vbs來解壓這兩種格式的文件,至少要有兩種命令行解壓工具,否則是絕對不可以的”。絕對不可以的,回答的人好自信啊,笑而不語~
原文:http://demon.tw/programming/vbs-zip-file.html
http://demon.tw/programming/vbs-unzip-file.html

標簽:牡丹江 河南 阜陽 咸陽 武威 四平 伊春 梅州

巨人網(wǎng)絡(luò)通訊聲明:本文標題《純vbs實現(xiàn)zip壓縮與unzip解壓縮函數(shù)代碼》,本文關(guān)鍵詞  純,vbs,實現(xiàn),zip,壓縮,與,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《純vbs實現(xiàn)zip壓縮與unzip解壓縮函數(shù)代碼》相關(guān)的同類信息!
  • 本頁收集關(guān)于純vbs實現(xiàn)zip壓縮與unzip解壓縮函數(shù)代碼的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章