本文整理汇总了C#中KeyValuePair.GroupBy方法的典型用法代码示例。如果您正苦于以下问题:C# KeyValuePair.GroupBy方法的具体用法?C# KeyValuePair.GroupBy怎么用?C# KeyValuePair.GroupBy使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类KeyValuePair
的用法示例。
在下文中一共展示了KeyValuePair.GroupBy方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CreateZip
/// <summary>
/// 创建压缩包
/// </summary>
/// <param name="zipFile"></param>
/// <param name="e"></param>
public void CreateZip(string title, string zipFile, string pwd, Wrapper.RunworkEventArgs e, KeyValuePair<string, FileInfo>[] files)
{
using (var fs = new System.IO.FileStream(zipFile, System.IO.FileMode.Create, System.IO.FileAccess.Write, System.IO.FileShare.None))
using (var zip = new ICCEmbedded.SharpZipLib.Zip.ZipOutputStream(fs))
{
zip.Password = pwd;
zip.SetLevel(9);
var entryFactory = new ICCEmbedded.SharpZipLib.Zip.ZipEntryFactory();
//合并路径
var fileGroups = files.GroupBy(s => System.IO.Path.GetDirectoryName(s.Key)).ToDictionary(s => s.Key, s => s.ToArray());
var folders = fileGroups.Keys.OrderBy(s => s, StringComparer.OrdinalIgnoreCase).ToArray();
folders.ForEach(s =>
{
if (!string.IsNullOrEmpty(s))
{
var fe = entryFactory.MakeDirectoryEntry(s);
fe.IsUnicodeText = true;
fe.DateTime = DateTime.Now;
zip.PutNextEntry(fe);
zip.CloseEntry();
}
foreach (var f in fileGroups[s])
{
if (e != null)
e.ReportProgress(e.Progress.TaskCount, e.Progress.TaskProgress + 1, string.Format(title, f.Key));
var ent = entryFactory.MakeFileEntry(f.Key);
ent.IsUnicodeText = true;
ent.DateTime = f.Value.LastWriteTime;
//复制文件内容。简单起见,这里不返回进度显示。。。
using (var sou = f.Value.OpenRead())
{
ent.Size = sou.Length;
zip.PutNextEntry(ent);
ICCEmbedded.SharpZipLib.Core.StreamUtils.Copy(sou, zip, new byte[0x400]);
}
zip.CloseEntry();
}
});
zip.Flush();
zip.Close();
}
}