2015-05-13 126 views
2

基本上我試圖解壓zip文件中的一些特定文件(裏面有很多垃圾子文件夾)。如何遍歷zip文件中的子文件夾並解壓縮具有特定擴展名的文件?

東西只是最後一個子文件夾包含我想要的文件。其他子文件夾將不包含除另一個子文件夾以外的任何文件。

enter image description here

這裏是代碼我目前使用:

ZipFile="C:\Test.zip" 
ExtractTo="C:\" 
Set fso = CreateObject("Scripting.FileSystemObject") 
If NOT fso.FolderExists(ExtractTo) Then 
    fso.CreateFolder(ExtractTo) 
End If 
set objShell = CreateObject("Shell.Application") 
set FilesInZip= objShell.NameSpace(ZipFile).items 
print "There are " & FilesInZip.Count & " files" 
'Output will be 1 because there is only one subfolder there. 
objShell.NameSpace(ExtractTo).CopyHere(FilesInZip) 
Set fso = Nothing 
Set objShell = Nothing 

反正我有可以穿越子文件夾,只有具有特定擴展名的文件解壓?

回答

1

你可以做到這一點與一個自稱爲文件夾項目,並提取文件的項目,如果他們有一個特定擴展名的遞歸過程:

Set fso = CreateObject("Scripting.FileSystemObject") 
Set app = CreateObject("Shell.Application") 

Sub ExtractByExtension(fldr, ext, dst) 
    For Each f In fldr.Items 
    If f.Type = "File folder" Then 
     ExtractByExtension f.GetFolder, ext, dst 
    ElseIf LCase(fso.GetExtensionName(f.Name)) = LCase(ext) Then 
     app.NameSpace(dst).CopyHere f.Path 
    End If 
    Next 
End Sub 

ExtractByExtension app.NameSpace("C:\path\to\your.zip"), "txt", "C:\output" 
+0

謝謝安斯​​加爾,這是非常有幫助的! – nwpulele

相關問題