fs.archive icon indicating copy to clipboard operation
fs.archive copied to clipboard

Pyfilesystem2 for various archive filesystems

Results 5 fs.archive issues
Sort by recently updated
recently updated
newest added

Related to #14 As said, not sure if this is just a bandaid that happens to work or indeed the correct way of doing it.

This happens with almost every 7z archive that contains anything. With `archive.7z` being an archive in the current directory: ```python myfs = fs.archive.open_archive(".","archive.7z") myfs.close() ``` results in ``` Traceback (most...

From inspection (I haven't done testing) of fs.archive 0.7.2, it looks to me like `fs.archive.isofs` reports that it is `case_insensitive` in the following way: if `self._rock_ridge or self._joliet`: `True` else...

bug

Hi @althonos, I'm looking at switching my old 7zip + `re` solution for getting the contents of Zip and ISO files. All I need to grab is the filepath, size,...

bug