我想使用VBScript解压缩.zip文件,只是它一直是一个没有外部应用程序的新电脑.现在我知道
Windows XP和2003有一个内部的.zip文件夹选项,所以我想我可以通过VBScript使用它来提取文件.
我该怎么做?
我试过了:
Set objShell = CreateObject("Shell.Application") Set SrcFldr = objShell.NameSpace(fileName) Set DestFldr = objShell.NameSpace(appDir) DestFldr.CopyHere(SrcFldr)
哪个没有工作.
可能是什么问题呢?
只需设置ZipFile = zip文件的位置,ExtractTo =到zip文件应该被提取到的位置.
原文链接:https://www.f2er.com/windows/363752.html'The location of the zip file. ZipFile="C:\Test.Zip" 'The folder the contents should be extracted to. ExtractTo="C:\Test\" 'If the extraction location does not exist create it. Set fso = CreateObject("Scripting.FileSystemObject") If NOT fso.FolderExists(ExtractTo) Then fso.CreateFolder(ExtractTo) End If 'Extract the contants of the zip file. set objShell = CreateObject("Shell.Application") set FilesInZip=objShell.NameSpace(ZipFile).items objShell.NameSpace(ExtractTo).CopyHere(FilesInZip) Set fso = Nothing Set objShell = Nothing