使用 SharpZipLib,我将文件添加到现有的 zip 文件中:
using (ZipFile zf = new ZipFile(zipFile)) {
zf.BeginUpdate();
foreach (FileInfo fileInfo in fileInfos) {
string name = fileInfo.FullName.Substring(rootDirectory.Length);
FileAttributes attributes = fileInfo.Attributes;
if (clearArchiveAttribute) attributes &= ~FileAttributes.Archive;
zf.Add(fileInfo.FullName, name);
//TODO: Modify file attribute?
}
zf.CommitUpdate();
zf.Close();
}
现在的任务是清除Archive
文件属性。
但不幸的是,我发现这只有在使用ZipOutputStream
和 set创建新的 zip 文件时才有可能ExternalFileAttributes
:
// ...
ZipEntry entry = new ZipEntry(name);
entry.ExternalFileAttributes = (int)attributes;
// ...
有没有办法添加文件和修改文件属性?
DotNetZip 可以做到这一点吗?