How to make index of all files in directory, including subdirectiories and contents of ZIP files?

I need to make list of all files and folders in directory and its subdirectories, including contents of ZIP files.

Is there any program that can create nice list of contents?

2 Answers

WinRAR can create HTML/text reports listing both non-compressed files as well as the contents of all supported archive formats:

1

Besides this I am sure there are lots of directory listing utilities with ZIP support, such as ExpPrint for example.

On linux You have the find command that can find (and list) all files below a certain path.

find . -type f 

for each zip-file found You could use

unzip -l thezipfile 

in order to list contents. When encountering zipfiles inside zipfiles it may be a little more complicated though

2

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like