1

Hi I'm trying to read a zip file which contains multiple files. Few of the files inside is named in Arabic.
My file name: (Final تدريب.pdf) becomes (Final óº⌐∩á.pdf) instead. I hope you can guide me.

Here is my code:

using Ionic.Zip;

                  using (ZipFile zip = ZipFile.Read(path))
                    {

                        foreach (var entry in zip.Entries)
                        {
                            string name = entry.FileName;
                        }
                    }

ProgrammingLlama
  • 36,677
  • 7
  • 67
  • 86
Omar Awwad
  • 11
  • 2

0 Answers0