How to print a listing of files in a directory
There are different methods of printing a listing of files. On this page, we cover how to send output to a file, which can be printed, instead of outputting directly to a printer.
- Windows command line and MS-DOS
- Linux
Windows command line and MS-DOS
Microsoft Windows has no easy method of printing the output of a directory to a file or printer. Outputting to a file and printing that file is the next best solution.
- Open the Windows command line.
- Navigate to the directory containing the content you'd like a list to print. If you're new to the command line, familiarize yourself with the cd command and the dir command.
- Once in the directory you want to print the contents of, type one of the following commands.
dir > print.txt
The command above takes all output of the dir command and writes it to the print.txt file in the current directory.
dir /b > print.txt
The command above prints only the names of files to the print.txt file and not the information of the files in the current directory.
dir /s /b > print.txt
The command above prints only the name of all files in the current directory and any subdirectories to the print.txt file.
- After executing any of the commands above, the print.txt file is created. Open this file in any text editor (e.g., Notepad) and print the file. You can also open Notepad from the command prompt by typing notepad print.txt.
- How to print a document, picture, or another file.
If you have another default text editor, you can also use the start command to open the file with your default text editor. For example, type start print.txt to open the file in the default text editor.
Linux
- Navigate to the directory you want to print. If you're new to Linux, you must familiarize yourself with the Linux cd command and the ls command.
- Once in the directory you want to print the contents of, type the following command.
ls > print.txt
The command above prints the name of all files in the current directory and any subdirectories to the print.txt file.
Related information
- How to create a PDF.
- How to print DOS output to printer.
- How to list files in a directory or folder on the computer.
- See the append symbol definition for further information and related links.
- Printer help and support.