arkfind
arkfind copied to clipboard
A utility to recursively search for files by name in a filesystem, also looking inside archives to an arbitary depth.
Hello, Actually it works perfectly well, however it's quite slow to process the list. It seems there is a whole lot of room to improve, since it seems not to...
RuntimeError: File is encrypted, password required for extraction
This could be done using isotools
Currently `arkfind` will walk through all directories and archives, constructing the entire tree in memory, and _then_ it will search through that list for whatever the user specified. It would...
Arkfind should support 7Z archives. There's an LZMA module that supports 7z archives at https://github.com/fancycode/pylzma
Java archives (.jar) files should be supported. This should simply be an extension of the zip file support.
Arkfind should support matching against regular expressions when a certain flag is passed.
``` Traceback (most recent call last): File "./arkfind", line 623, in json=args.json File "./arkfind", line 577, in main archive_search(Path.os(base_path), search_func, reporter) File "./arkfind", line 558, in archive_search to_process.extendleft(node.contents) File "./arkfind",...