如何使用内部Windows XP选项在VBScript中解压缩文件

前端之家收集整理的这篇文章主要介绍了如何使用内部Windows XP选项在VBScript中解压缩文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想使用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文件应该被提取到的位置.
'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
原文链接:https://www.f2er.com/windows/363752.html

猜你在找的Windows相关文章