Monday, May 6, 2024
55
rated 0 times [  55] [ 0]  / answers: 1 / hits: 247021  / 2 Years ago, wed, august 17, 2022, 1:59:24

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?


More From » command-line

 Answers
3

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.


[#35544] Thursday, August 18, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
unsmmoth

Total Points: 72
Total Questions: 113
Total Answers: 95

Location: Thailand
Member since Tue, Oct 6, 2020
4 Years ago
;