alexcrichton / tar-rs

Tar file reading/writing for Rust
https://docs.rs/tar
Apache License 2.0
616 stars 178 forks source link

feat: allow to skip unsupported files #343

Open yet-another-aligator opened 8 months ago

yet-another-aligator commented 8 months ago

This PR provides a new Builder::skip_unsupported_file_types(&mut self, skip: bool) method, for allowing to silently skip unsupported files, instead of returning with an error.

For the moment, this feature applies to the case of UNIX named sockets only.