The fastest way to open a folder in Command Prompt
To open a folder in Command Prompt, type start followed by the folder path, then press Enter. For example, start C:\Users\YourName\Documents opens your Documents folder in File Explorer. Command Prompt will launch the folder in your system's default file manager — usually File Explorer on Windows — while the Command Prompt window stays open for more commands.
If the folder path contains spaces, wrap it in quotation marks: start "C:\Program Files\My Folder". Without the quotes, Command Prompt reads the space as a separator and tries to open only the first part of the path, which fails.
You can also navigate to a folder first using the cd command, then open it with start . (the period represents the current folder). This is useful when you are already deep in a folder structure and want to see what is there visually.
Key Takeaways
- The start command followed by a folder path opens that folder in File Explorer without closing Command Prompt.
- Folder paths with spaces must be enclosed in quotation marks, or Command Prompt will misread the path.
- Use start . to open the folder you are currently in, without typing out the full path.
- The cd command moves you between folders in Command Prompt, and dir lists what is inside the current folder.
Using the start command with different path formats
Windows accepts folder paths in two formats: the traditional backslash format (C:\Users\YourName\Documents) and the newer forward-slash format (C:/Users/YourName/Documents). Both work in Command Prompt with the start command, so use whichever you find easier to type.
Relative paths also work if you are already inside a folder. If you are in C:\Users\YourName and want to open the Documents subfolder, type start Documents instead of the full path. This saves typing and is useful when you navigate between related folders.
To open a folder on a different drive, include the drive letter. For example, start D:\Backups opens the Backups folder on your D: drive. If the drive does not exist or the path is wrong, Command Prompt displays an error message instead of opening anything.
Navigating folders before opening them
Before you open a folder, you often need to find it first. Use the cd command to move between folders. Type cd FolderName to enter a subfolder, or cd .. to go up one level to the parent folder. For example, if you are in C:\Users\YourName, typing cd Documents moves you into the Documents folder.
To see what folders exist in your current location, type dir and press Enter. Command Prompt lists all files and folders, with folders marked by <DIR>. This helps you find the exact name of a folder before you try to open it, especially if you are not sure of the spelling.
Once you are in the folder you want to view, type start . to open it in File Explorer. The period is a shorthand for "the current folder," so you do not need to type the full path. This is faster than typing start followed by a long path.
Opening folders with special characters or long names
Folder names with spaces, parentheses, or other special characters need quotation marks around the path. For example, start "C:\Program Files (x86)\My App" works, but start C:\Program Files (x86)\My App fails because Command Prompt misreads the parentheses and spaces.
If a folder name is very long or contains characters you cannot easily type, use the dir command to see the exact name, then copy and paste it into your start command. Right-click in the Command Prompt window and select Paste to insert text you copied from elsewhere.
Another option is to use the Tab key for autocomplete. Type the first few letters of a folder name, then press Tab, and Command Prompt fills in the rest. If multiple folders start with the same letters, press Tab again to cycle through the options.
Opening folders from a specific location on your computer
Your user profile folder is at C:\Users\YourName, where YourName is your Windows username. Common subfolders include Documents, Downloads, Desktop, and Pictures. To open your Downloads folder, type start C:\Users\YourName\Downloads.
Program files are usually in C:\Program Files (for 64-bit programs) or C:\Program Files (x86) (for 32-bit programs). If you need to open a folder inside a program's installation directory, type start "C:\Program Files\ProgramName\FolderName" with quotes around the full path.
Temporary files are stored in C:\Users\YourName\AppData\Local\Temp. This folder is hidden by default in File Explorer, but you can still open it from Command Prompt. Type start C:\Users\YourName\AppData\Local\Temp to view it.
Troubleshooting when the folder does not open
If you type a start command and nothing happens, the most common reason is a typo in the path. Check that the folder actually exists by using dir to list the contents of the parent folder. If the folder name appears in the list, copy it exactly and try again.
If you see an error message like "The system cannot find the path specified," the path is wrong or the folder has been moved or deleted. Verify the path by opening File Explorer, navigating to the folder, and looking at the address bar at the top to see the correct path.
If the folder opens but looks empty, the folder may actually be empty, or the files inside may be hidden. In File Explorer, click View at the top, then check the box for "Hidden items" to show files that are normally hidden from view.
Frequently Asked Questions
Can I open a folder and run a command inside it at the same time?
No, the start command opens the folder in File Explorer and returns control to Command Prompt, so you can type more commands. If you want to work with files inside a folder using Command Prompt, use cd to navigate into it instead of using start.
What is the difference between start . and start with a full path?
start . opens the folder you are currently in, while start C:\path\to\folder opens any folder on your computer. Use start . when you are already where you want to be; use the full path when you want to jump directly to a different location.
Does the start command work on Mac or Linux?
No, start is a Windows-only command. On Mac, use open FolderName. On Linux, use nautilus FolderName (for GNOME) or dolphin FolderName (for KDE). Each system has its own file manager and command syntax.
Can I open multiple folders at once?
Yes, type multiple start commands in a row, each on its own line. For example, start C:\Users\YourName\Documents followed by start C:\Users\YourName\Downloads opens both folders in separate File Explorer windows.