I got a problem when try to zip folders with file names with national symbols (win-1251 encoding in my case). Archive contains unreadable file names. Seems like component using a wrong file names encoding. How can I manage this issue?
Thank you.
using (var zip = new Rebex.IO.Compression.ZipArchive(archiveFileName, ArchiveOpenMode.CreateNew))
{
zip.Add(Path.Combine(srcPath, "*"), @"\", TraversalMode.Recursive,
TransferMethod.Copy,
ActionOnExistingFiles.OverwriteAll);
}