Posted 25 July 2019, 10:44 am EST
The code below throws an exception
“Der Zugriff auf den Pfad “c:\del\test.20190725\languages” wurde verweigert.” which means 'access denied" on a certain subdirectory within the zip file
when I unzip the zip file manually with a tool like WinRar/Winzip it simply works.
C1Zip version is: 4.0.20182.314
I cant upload the zip file here, data within is a little sensible.
Any ideas?
============================================================
If C1ZipFile.IsZipFile(CmsDatenDatei) Then Try Dim myZip As New C1ZipFile myZip.UseUtf8Encoding = True myZip.Open(CmsDatenDatei) myZip.Entries.ExtractFolder("c:\del\test") myZip.Close() IO.File.Delete(CmsDatenDatei) Catch ex As Exception Call Protozeile("Hole_KioskDaten) S12) Entpacke Datendatei" & CmsDatenDatei & vbCrLf & ex.Message.ToString) End Try End If