NUnrar.Archive.RarArchive archive = NUnrar.Archive.RarArchive.Open(location + "1.rar");
foreach (RarArchiveEntry item in archive.Entries)
{
string path = Path.Combine(location, Path.GetFileName(item.FilePath));
item.WriteToFile(path);
}
如果我的文件沒有任何子目錄萬物的作品,但如果RAR文件有子目錄他們都提取到同一個文件夾,我怎麼可以保留子目錄和文件位置的模型
在最新版本中,沒有這樣的字段條目.FilePath,而是使用entry.Key。 – David