Hello, I've got a NiFi flow which: 1. Ingest archive files (tar.gz, rar and zip) 2. IdentifyMimeType of the archive 3. UnpackContent of the archive 4. Identify which of the files can be processed based on filename
The problem I've got is that a lot of processing time/content repo space is wasted by extracting the archive files and realising that I can't process the file based on the filename. I was wondering if there was any way of getting a list of the filenames within the archive without actually extracting the files? Based on the filenames I can then decide if I should unpack the archive or not. Kiran
