Ubuntu – Get a list of all files in folder and sub-folder in a file

command linedirectoryfiles

How do I get a list of all files in a folder, including all the files within all the subfolders and put the output in a file?

Best Answer

You can do this on command line, using the -R switch (recursive) and then piping the output to a file thus:

ls -R > filename1

this will make a file called filename1 in the current directory, containing a full directory listing of the current directory and all of the sub-directories under it.

You can list directories other than the current one by specifying the full path eg:

ls -R /var > filename2

will list everything in and under /var and put the results in a file in the current directory called filename2. This works on directories owned by another user including root as long as you have read access for the directories.

You can also list directories you don't have access to such as /root with the use of the sudo command. eg:

sudo ls -R /root > filename3

Would list everything in /root, putting the results in a file called filename3 in the current directory. Since most Ubuntu systems have nothing in this directory filename3 will not contain anything, but it would work if it did.

Related Question