-
Notifications
You must be signed in to change notification settings - Fork 497
Open
Labels
Description
Trying to open the archive adressen.tar.xz with the following code did not seem to recognize this file:
using var stream = new FileStream("path/to/locally/stored");
var archive = TarArchive.Open(load);
var entry = archive.Entries.First();It claims there are not entries. When I open it with 7Zip or the built-in archiving tooling of Windows, I can open the archive.
The used method (according to 7Zip) is LZMA2:26 CRC64. Am I doing something wrong? Or am I facing a (file size maybe, the backed file is just over 1 GB unpacked) issue?
Copilot