mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-02-03 21:23:38 +00:00
[PR #351] Implement Entry.ToString() #985
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Original Pull Request: https://github.com/adamhathcock/sharpcompress/pull/351
State: closed
Merged: Yes
When inspecting a
TarArchiveunder the debugger, I found that all entries are listed as{SharpCompress.Archives.Tar.TarArchiveEntry}.This PR implements
Entry.ToString()by returningEntry.Key, so that each entry now shows up with its actual file name.Could be useful for logging/monitoring scenarios as well.