Visit Website

How to Create, Open & Delete Folders Using CMD ๐Ÿ“ | Essential Commands for Beginners (Windows Tutorial)

Learn how to create, open, and delete folders using CMD in Windows. Essential Command Prompt folder commands explained for beginners.


Hello friends! ๐Ÿ‘‹

If you're learning Windows Command Prompt (CMD), one of the first skills you should master is managing folders. Instead of using File Explorer for every task, CMD allows you to create, open, rename, move, copy, and delete folders much faster using simple commands.

Many beginners think CMD is only for programmers, but that's not true. System administrators, IT technicians, web developers, ethical hackers, and even regular Windows users use Command Prompt every day because it can perform many tasks more efficiently than the graphical interface.

If you've already learned the CD (Change Directory) command, this guide is the perfect next step. You'll learn the most useful folder management commands with real-world examples that you can practice on your own computer.

By the end of this tutorial, you'll be able to organize folders confidently without relying entirely on File Explorer.


๐Ÿ’ก My Experience

When I first started learning CMD, I created and deleted folders through Windows Explorer because it felt easier. But after working with programming projects and managing multiple directories in computer labs, I realized how much faster Command Prompt can be.

For example, creating ten folders with a single command takes only a few seconds. Likewise, deleting an entire project directory from CMD is much quicker than manually selecting folders in File Explorer. Once you understand a few basic commands, managing files becomes far more efficient.


Why Learn Folder Commands?

Learning folder commands helps you:

  • Work faster.

  • Organize projects efficiently.

  • Prepare for Batch Scripting.

  • Learn PowerShell more easily.

  • Understand software installation paths.

  • Improve troubleshooting skills.

These commands are useful for both beginners and professionals.


Before You Start

Open Command Prompt.

You can do this by:

  • Pressing Win + R

  • Typing cmd

  • Pressing Enter

Or search for Command Prompt from the Start Menu.


What Is a Directory?

In Windows, a directory is simply another name for a folder.

For example:

C:\Users\Lovejeet\Documents

Every folder you see in File Explorer is considered a directory.


Command 1: Create a Folder (MD / MKDIR)

The MD (Make Directory) or MKDIR command creates a new folder.

Syntax

mkdir FolderName

Example:

mkdir Projects

Result:

A folder named Projects is created in the current directory.


Create Multiple Folders

CMD can create several folders at once.

Example:

mkdir HTML CSS JavaScript Images

Windows creates all four folders with one command.


Create Nested Folders

Example:

mkdir Projects\Website\Images

If the parent folders don't already exist, Windows creates them automatically.


๐Ÿ’ก My Recommendation

Use meaningful folder names such as Projects, Backups, Images, or Documents instead of generic names like New Folder. Clear naming makes your files much easier to organize as your projects grow.


Command 2: Open a Folder (CD)

To move into a folder, use:

cd Projects

If the folder exists, CMD changes the current directory.


Open Nested Folders

Example:

cd Projects\Website

You can also use relative or absolute paths depending on your current location.


Move Back One Folder

Use:

cd ..

This moves to the parent directory.


Return to the Root Drive

cd \

This returns to the root of the current drive.


Command 3: View Folder Contents (DIR)

Before deleting or editing folders, it's often useful to see what's inside.

Use:

dir

This displays:

  • Folders

  • Files

  • Dates

  • Sizes


Command 4: Rename a Folder

Use:

ren OldFolder NewFolder

Example:

ren Projects MyProjects

The folder name changes without affecting its contents.


Command 5: Delete an Empty Folder (RD)

The RD (Remove Directory) command deletes empty folders.

Example:

rd TestFolder

If the folder contains files, Windows won't remove it.


Delete a Folder with Contents

Use:

rmdir /s Projects

The /s option removes:

  • Subfolders

  • Files

  • The main folder


⚠️ Note

The rmdir /s command permanently deletes the selected folder and everything inside it. Double-check the folder name before pressing Enter, especially if it contains important files.


Delete Without Confirmation

rmdir /s /q Projects

The /q option suppresses the confirmation prompt.

Use it carefully.


Command 6: Copy a Folder

CMD itself doesn't directly copy folders with the copy command.

Instead, use:

xcopy Projects Backup\Projects /E

or

robocopy Projects Backup\Projects

These commands are commonly used for copying folders and their contents.


Command 7: Move a Folder

Example:

move Projects D:\Backup

This moves the folder to another location.


Working with Folder Names That Contain Spaces

Example:

mkdir "My Projects"

Open it:

cd "My Projects"

Quotation marks are required when folder names contain spaces.


Common Folder Commands

CommandPurpose
mkdir / mdCreate a folder
cdOpen a folder
cd ..Move to the parent folder
dirDisplay files and folders
renRename a folder
rd / rmdirDelete an empty folder
rmdir /sDelete a folder and its contents
moveMove a folder
xcopyCopy folders
robocopyAdvanced folder copying

Real-World Example

Suppose you're creating a web development project.

Create the folders:

mkdir Website
cd Website
mkdir css js images fonts pages

Your structure becomes:

Website
│
├── css
├── fonts
├── images
├── js
└── pages

This is a clean and professional project layout.


Image Suggestions

Include screenshots of:

  1. Opening Command Prompt.

  2. Creating a folder with mkdir.

  3. Navigating using cd.

  4. Listing files with dir.

  5. Renaming a folder.

  6. Deleting a folder with rd.

  7. Final folder structure in File Explorer.


๐Ÿ’ก Pro Tip

Press the Tab key while typing a folder name in Command Prompt. Windows automatically completes matching folder names, helping you avoid typing mistakes and saving time.


Quick Summary Table

TaskCommand
Create foldermkdir Folder
Open foldercd Folder
Go backcd ..
View contentsdir
Rename folderren Old New
Delete empty folderrd Folder
Delete folder with filesrmdir /s Folder
Move foldermove Folder Destination
Copy folderxcopy or robocopy

Common Beginner Mistakes

Avoid these mistakes:

  • Forgetting quotation marks for folder names with spaces.

  • Using rd on folders that still contain files.

  • Running rmdir /s without checking the folder path.

  • Creating folders in the wrong directory.

  • Renaming folders while files are in use.

  • Confusing files with folders.

  • Ignoring the current working directory before executing commands.


Interesting Facts

  • MD and MKDIR perform the same function.

  • RD and RMDIR are equivalent commands.

  • ROBOCOPY is more powerful than XCOPY for large file transfers.

  • Windows Command Prompt has included folder management commands for decades.

  • Many automation scripts rely on these basic commands to organize files efficiently.


Best Practices

  • Organize projects into logical folders.

  • Use descriptive folder names.

  • Keep regular backups of important data.

  • Verify the current directory before deleting folders.

  • Learn keyboard shortcuts to work more efficiently.


Conclusion

Managing folders through Command Prompt is a fundamental Windows skill that saves time and improves productivity. Commands like mkdir, cd, dir, ren, and rmdir form the foundation of many advanced tasks, including batch scripting, automation, and software development.

Practice these commands regularly in a test folder until they become familiar. Once you're comfortable with folder management in CMD, learning more advanced Windows commands will be much easier.


Frequently Asked Questions (FAQs)

1. What is the difference between md and mkdir?

There is no practical difference. Both commands create new folders.

2. How do I open a folder in CMD?

Use the cd command followed by the folder name.

3. Why can't I delete a folder using rd?

The rd command only removes empty folders. If the folder contains files or subfolders, use rmdir /s instead.

4. Can I create multiple folders at once?

Yes. Separate the folder names with spaces after the mkdir command.

5. How do I rename a folder?

Use the ren command followed by the old folder name and the new folder name.

6. What command copies an entire folder?

Commands such as xcopy and robocopy are commonly used to copy folders and their contents.

7. Is it safe to use rmdir /s /q?

It should be used with caution because it permanently removes the selected folder and everything inside it without asking for confirmation.


Complete Video Guide/Tutorial


เคเค• เคŸिเคช्เคชเคฃी เคญेเคœें

Have a question or feedback? Share it below! Please avoid spam and stay respectful.
Visit Website
Visit Website