You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
The source filename is "测试.pdf",It contains Chinese characters,but entryName is Garbled code.
I need some setting?
`public static void Main()
{
string zipFilePath = "";
string extractPath = "";
string password = ""; // 输入密码
try
{
using (FileStream fileStream = File.OpenRead(zipFilePath))
{
using (ZipInputStream zipStream = new ZipInputStream(fileStream))
{
if (!string.IsNullOrEmpty(password))
{
zipStream.Password = password; // 设置密码
}
Beta Was this translation helpful? Give feedback.
All reactions