I'm looking for an easy way to build a list in a txt
file of the filenames inside a given directory. Filenames only preferred, though I could trim other fields if necessary.

- 90,397
3 Answers
This command should be helpful:
find -maxdepth 1 -type f ! -name flist.txt -printf "%P\n" > flist.txt
Command information:
-maxdepth
: Don't search for files below folders of one level down.type f
: Search for only files-printf "%P\n"
: Print the names only and on separate lines> flist.txt
: Store those names (using output redirection) in a file to be created on the fly called `flist.txt! -name flist.txt
: Skips the name of the output file from the generated list

- 36,677
The ls (list) command executed in a terminal window is the key, and its man page lists options.
Let's say you are in your home directory, and you want a list of all the files in directory /x/y . The command would be
ls -b1A /x/y > listoffiles
for the -b option lists all files even with spaces, -1 (number one, not letter l) option of ls will list with one line per file name, and -A will make sure hidden files are shown, but not directories.

- 17,202
-
-
-
1... or use
ls -b
which will quote any special characters (including\n
) in the filenames. – PerlDuck Jul 13 '18 at 17:21 -
-
-
2@A.B. LOL, you mean because of this: https://mywiki.wooledge.org/ParsingLs ? – PerlDuck Jul 13 '18 at 17:23
-
Cases I see will be unlikely to have spaces in filenames. Also this is the only response that worked out of the box. Thanks much for help. GB – Gary Bollenbach Jul 13 '18 at 17:29
In terminal, change directory to the required folder, then use the command:
ls > files.txt
This will redirect a list of the contents of the folder to the text file files.txt
. You didn't indicate what form the contents of the folder takes. If there are sub-folders present, in addition to a group of files, the folder names will also be included. But, once you have the text version you can sort/edit it any way you desire.

- 36,264
- 56
- 94
- 147

- 2,672
-
1
-
ls
omits “hidden” dot files (unless instructed otherwise) and mangles file names with some unusual characters. Don't use it to list file names for anything but display to a human reader. -1 – David Foerster Jul 14 '18 at 10:48 -
Many people don't like this solution and downvote the answer - which is their prerogative. However, I would point out that the OP asked for an "easy way" to list files. Some of us have simple folder structures. We don't have concerns with hidden files. And, I did realize that the simple command would include files.txt, but I did say that the result could be edited. Anyway, for what it's worth, that's the simple-minded way I do things. – CentaurusA Aug 17 '18 at 02:09
version
else your question might be closed! – George Udosen Jul 13 '18 at 16:20