var zipName = Path.ChangeExtension(versionPath, ".zip");
FastZip fastZip = new FastZip();
fastZip.UseUnicode = true;
fastZip.StringCodec.CodePage = Encoding.GetEncoding("GB2312").CodePage;
string filter = null;
fastZip.CreateZip(zipName, versionPath, true, filter, filter);
Steps to reproduce
Expected behavior
retain the directory even if the directory is empty
Actual behavior
the directory has missing
Version of SharpZipLib
1.4.0
Obtained from (only keep the relevant lines)