gpt4 book ai didi

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

转载 作者:可可西里 更新时间:2023-11-01 12:30:22 26 4
gpt4 key购买 nike

我想使用 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

关于windows - 如何使用 Windows XP 中的内部选项在 VBScript 中解压缩文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/911053/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com