プログレスバーに進行状況を表示しながら、プログラムで .zip ファイルを抽出し、そのコンテンツをフォルダーに配信しようとしています。プログレスバーが機能しない場合は、「Unzipper」が別のフォームに切り替えることができれば幸いです。抽出のために現在取得しているコードは次のとおりです。
Dim sc As New Shell32.Shell()
'Create directory in which you will unzip your files .
IO.Directory.CreateDirectory("C:\Users\NikolajBanke\Desktop\Test\Unzipped")
'Declare the folder where the files will be extracted
Dim output As Shell32.Folder = sc.NameSpace("C:\Users\NikolajBanke\Desktop\Test\Unzipped")
'Declare your input zip file as folder .
Dim input As Shell32.Folder = sc.NameSpace("C:\Users\NikolajBanke\Desktop\Test\peace.zip")
'Extract the files from the zip file using the CopyHere command .
output.CopyHere(input.Items, 4)
私が得る助けをありがとう:)