Noel
Results
1
issues of
Noel
static void Main(string[] args) { string rarFile = @"\\myserver\D\at\Builds\61.1.21078.1\test.rar"; string dllTargetFilePath = @"\\myserver\D\at\Builds\61.1.21078.1\target.dll"; using (var archive = RarArchive.Open(rarFile)) { foreach(var entry in archive.Entries.Where(entry => !entry.IsDirectory && entry.Key.EndsWith("target.dll"))) { entry.WriteToFile(dllTargetFilePath, new...