Unzip zip with subfolders, missing first character

0

Hallo,

We wanted to use the new version (v6.0.40626)  but now we have a new problem.

We want to unzip a zip with subfolders, but after extracting the zip, its' missing the first character from each folder.

[code lang='c#']

using (Zip zip = new Zip(zipFile))
            {
                TransferOptions opt = new TransferOptions();
                opt.FileExistsResolveAction = FileExistsResolveAction.OverwriteOlderFiles;

                zip.ExtractAll(targetPath, opt);
                zip.Close();
            }

[/code]

Thanks for your feedback.

Viele Grüsse

Iris Maag

 

zip
edited 12/2/2017 7:06:25 PM
asked 6/27/2014 7:25:24 AM
add a comment

9 Answers

0

HI,

ComponentPro.Licensing.Zip.UltimateLicenseManager.SetLicenseKey("MY_DEMO_KEY...");


string pw = password.Length > 0 ? CreateKey(password) : "";


Zip zip = new Zip();


zip.Password = pw;


zip.Open(fileName);

zip.ExtractAll(directory);


zip.Close();

its using (Trial) 6.0

I belive the zip file is CodePage 437

Thanks

Dave

 
answered 11/16/2017 12:41:37 AM
add a comment
0


Please login to our system download the latest build.

 
answered 11/16/2017 12:41:37 AM
add a comment
0

Dear David,

Thank you for your information. Can you post the code segment that can reproduce the issue? And please let us know the DLL file version (right-click on the file and choose Properties).

 
answered 11/16/2017 12:41:37 AM
add a comment
0

Please see our email.

 
answered 11/16/2017 12:41:37 AM
add a comment
0

Hi,

Using the trial version I have the same issue.

 

 
answered 11/16/2017 12:41:37 AM
add a comment
0

Thanks for your question. Is it possible to send us the ZIP file or let us know how to create the ZIP file to reproduce the issue?

 
answered 11/16/2017 12:41:37 AM
add a comment
0

It looks like you are using an old version. Can you download it from one of the following links:

- For mobile: http://www.componentpro.com/download/?name=UltimateZip.Mobile

- For .NET and Mono: http://www.componentpro.com/download/?name=UltimateZip

We will update the ZIP library on the Xamarin Component Store

 
answered 11/16/2017 12:41:37 AM
add a comment
0

We have received the file. We are working on this issue.

 
answered 11/16/2017 12:41:37 AM
add a comment
0

Thanks but do you have an instal that can run on a mac.

Dave

 
answered 11/16/2017 12:41:37 AM
add a comment

Your Answer

Not the answer you're looking for? Browse other questions tagged zip or ask your own question.