Listing Folder and Directory Content Using Command Prompt

Written by Eric Wyatt (last updated March 29, 2021)

Command Prompt is an extremely powerful tool that allows you to control your computer in various ways. One helpful way to use the Command Prompt is to get the contents of a folder. Often, we have a folder or directory that houses many additional directories and files. Getting a list of items in a directory can prove helpful. Obtaining a list of directory contents is a problem that a WindowsTips reader, Liz, had written about. She asked how one could do this without downloading a third-party app or messing with the Registry.

When it comes to this type of request, the first thing that comes to mind is using a PowerShell or Command Prompt tool, so this article focuses on using the latter, Command Prompt.

To start, press the Windows key, type (without quotes) "Command Prompt", and press Enter. This opens the Command Prompt window. Here you can use the Tree command to get a list of a directory's contents and add the list to a new text document. Do this by typing the following into the Command Prompt window:

tree "C:\Users\eric\Desktop\Main Directory" > "C:\Users\eric\Desktop\Main Directory\Contents.txt" /A /F

That's a long command, so make sure you type it all on one line. After you enter the command and press Enter, Windows creates a file titled "Contents.txt" in the location specified. That text file contains a listing of all the files and folders in the directory you specified. (See Figure 1.)

Figure 1. The names of items in a directory added into a .txt file.

To better understand the command, let's look at the parts we entered. There are four main parts. The first part of this command is the "Tree" command that we mentioned previously. The Tree command returns a graphical structure of the contents of a directory.

The second part, contained within the first set of quote marks, is the directory location from which you want Windows to gather information. A shortcut to obtain the directory location is to navigate in an Explorer window to the desired directory, click in the File Explorer location bar, copy the contents, and paste it in when needed in Command Prompt. (See Figure 2.)

Figure 2. The location of a folder within the Explorer window.

The third part of the command is the ">" character; this passes the information from the first part to the last part of the command. In other words, the output of the first part is used as input for the last part.

The fourth part of the command is within the second set of quote marks. This indicates where Command Prompt will save the information—the location and name of the file in which to save the data. In this instance, we named the resulting file "Contents.txt", however, we just as easily could have called it "directory.txt" or "Results.txt". Directly following the location and file name are the "/A" and "/F" switches. When used with the Tree command, these switches tell Command Prompt to return the information in an ASCII format and to look through all subfolders recursively.

With this small command, it is easy to get and save the names of any items within any folder or directory and save that information into a text file for printing or other uses.

 This tip (13841) applies to Windows 10.

Author Bio

Eric Wyatt

Eric Wyatt is a swell guy (or so his friends tell him). He is a formally trained designer and branding expert, bringing a wide range of skills to his Tips.Net articles. ...

MORE FROM ERIC

Which Version of Windows am I Running?

With Windows it has always been helpful to know what version you are running. With Windows 10 knowing the version isn't ...

Discover More

Displaying Seconds in the System Tray Clock

Time is more than hours and minutes. How do you get the taskbar clock to show seconds?

Discover More

Creating a QR Code for a Web Page

QR codes allow for data to be scanned quickly and actions to take place. Use Edge Chromium to create a QR code to open a ...

Discover More
More WindowsTips

Completely Delete Files with Cipher

When you delete a file in Windows, the operating system only removes the file from view. The deleted content can still be ...

Discover More

Renaming Files Using the Command Line

The rename command can really be a timesaver over trying to do the similar sort of thing with Windows Explorer. You can ...

Discover More

Using the Findstr Command

Finding data within files is a common need. If what you're looking for is in a flat file, you can find what you're after ...

Discover More
Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is 4 + 5?

There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)


Newest Tips