English 中文(简体)
a. 密码保护
原标题:unzip password protected file

• 如何使用密码保护密码(如果不知道密码)。

问题回答

齐普文档格式的密码适用于压缩文档输入数据。 这意味着案卷没有单一密码。 卷宗中有N zip条目,每个条目都有不同的密码,或根本没有密码。 有时,你拿到所有条目都使用相同的密码的手稿,但这不是具体要求,也不是由DotNetZip强迫的。

借助DotNetZip,你可以不使用任何密码,间接地读到Zp文档中的“中央目录”。 记得这些口号适用于锡普入境,而不是适用于齐普案。

因此:

using (var zip = ZipFile.Read("myzip.zip")) {
  foreach (var e in zip.Entries) {
    System.Console.WriteLine("Entry: {0}", e.FileName);
  }
}

......将打印文件条目清单,不论是否有任何条目受到密码保护。

如果你想尝试“跳板”密码保护入境的密码,你可以多次打电话<条码>。 它将对错误的密码作出例外规定。

我认为,如果你对粉碎机感到严重,那么你在C或C++使用大量细微算法这样做。

无。 你们需要密码,要么记住密码,要么知道密码,要么需要密码回收工具,这个工具应当在网络的黑暗一侧存在。





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Transaction handling with TransactionScope

I am implementing Transaction using TransactionScope with the help this MSDN article http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx I just want to confirm that is ...

System.Web.Mvc.Controller Initialize

i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...

Microsoft.Contracts namespace

For what it is necessary Microsoft.Contracts namespace in asp.net? I mean, in what cases I could write using Microsoft.Contracts;?

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签