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;
}
}