Hi,
I have been sent a file, "drawings.wdz". I am not a software developer.
I could not find any standalone program online to extract the compressed
archive. I downloaded the express version of WinDev and ran the
following code with no luck.
ResOpenArchive is int
ResExtractAll is int
ResOpenArchive = zipOpen("Archive", "E:\Archives\drawings.wdz")
IF ResOpenArchive = 0 THEN
ResExtractAll =
zipExtractAll("Archive","E:\Extracted",zipDirectory)
ELSE ResOpenArchive <> 0 THEN
Error(zipMsgError(ResOpenArchive))
END
Could someone please let me know where I am going wrong?