Skip to content
Follow
Windows

How to Delete Folders in Windows 11

Richard
Written by
Richard
Feb 4, 2026 Updated Jun 19, 2026 4 min read
How to Delete Folders in Windows 11
How to Delete Folders in Windows 11

Want to get rid of folders you don’t need on your Windows 11 PC? This simple guide will show you how to delete folders safely and easily.

⚡ Quick Answer

Select the folder, then press the Delete key or click the Delete button in File Explorer’s command bar. For permanent deletion, use Shift+Del or Shift + click the Delete button.

What is a Folder?

A folder is like a box on your computer. It holds files and sometimes other folders inside it. Folders help you keep your stuff organized so you can find things quickly.

Where Do Deleted Folders Go?

⚠️Warning
Deleting folders in Windows 11 sends the folders to the Recycle Bin, which is a temporary storage area. The Recycle Bin lets users bring back deleted folders if they decide they still want them. However, folders deleted from USB drives or memory cards skip the Recycle Bin and are immediately gone for good.
📝Note
If you delete folders from USB drives or memory cards, they don’t go to the Recycle Bin—they are permanently deleted right away.

You can turn on Recycle Bin for removable drives if you want to be safer when deleting files from those devices.

Why Learn to Delete Folders?

  • Free up space on your computer.
  • Keep your files tidy and organized.
  • Protect your private information by deleting sensitive folders.
  • Stop other users from messing with your important files.

How to Delete Folders in 🪟 Windows 11

1Using Keyboard Shortcuts

Deleting folders in Windows 11 using keyboard shortcuts is super fast. You can either send a folder to the Recycle Bin or delete it permanently right away. Just select the folder you want gone and press the right keys.

  1. Select the folder you want to delete by clicking it once.
  2. Press one of the following keys on your keyboard:
Shortcut KeysWhat It Does
DeleteDeletes folder and sends it to Recycle Bin
Ctrl+DAlso deletes folder and sends it to Recycle Bin
Shift+DelPermanently deletes folder (no Recycle Bin)

2Using File Explorer Command Bar

  1. Open Open File Explorer (the folder icon on your taskbar or press ⊞ Win+E).
  2. Find and click the folder you want to delete.
  3. At the top, click the Delete button (trash can icon).

You can delete folders in Windows 11 easily using the File Explorer command bar. Just open File Explorer, find the folder you want to remove, and click the trash can icon at the top. It’s a simple click-and-delete method.

Deleting folder in File Explorer command bar
Deleting folder in File Explorer command bar

3Using Right-Click ( Context Menu)

  1. Open File Explorer.
  2. Right-click on the folder you want to delete.
  3. Click Del from the menu that appears.

Extra tip: Hold the Shift key while right-clicking to get a full menu where you can also find the Delete option.

Right-click delete in File Explorer
Right-click delete in File Explorer

Full context menu with delete option
Full context menu with delete option

4Deleting Folders Using PowerShell (Advanced)

If you’re comfortable with commands, you can delete folders in Windows 11 using PowerShell. This advanced method gives you precise control over removing folders permanently. You’ll need to open Windows Terminal with admin rights and use a specific command.

  1. Open Windows Terminal and choose the PowerShell tab. [Admin privileges required]
  2. Type the command below to permanently delete a folder (replace the path with your folder’s location):
💻Code
Remove-Item -Path "C:\Users\User\Downloads\MyFolder" -Recurse -Force

Example:

💻Code
Remove-Item -Path "C:\Users\User\Downloads\MyFolder" -Recurse -Force

To delete a folder to the Recycle Bin using PowerShell, use this command:

💻Code
(New-Object -ComObject "Shell.Application").Namespace(0).ParseName("C:\Users\User\Downloads\MyFolder").InvokeVerb("delete")

5Deleting Folders Using Command Prompt

  1. Open Windows Terminal and choose the Command Prompt tab. [Admin privileges required]
  2. Type this command to permanently delete a folder (change the path):
💻Code
You can also delete folders in Windows 11 using the Command Prompt. This method uses simple commands for quick, permanent removals, which can be handy. Open Windows Terminal as an administrator and type the command to get started.

The `Remove-Item -Path "folder_path"` PowerShell command moves a specified folder to the Recycle Bin in Windows 11. This action retains the folder in the Recycle Bin for up to 30 days, allowing users to recover the folder. The folder does not permanently delete with this command.

PowerShell (New-Object -ComObject "Shell.Application").Namespace(0).ParseName("C:\Users\User\Downloads\MyFolder").InvokeVerb("delete")

Summary

  • Deleting folders helps keep your computer clean and organized.
  • Folders you delete usually go to the Recycle Bin, so you can recover them if needed.
  • You can delete folders permanently by using the Shift key or command-line tools.
  • There are many ways to delete folders—choose the one you feel most comfortable with!

Deleting folders in Windows 11 is a simple way to keep your computer tidy and organized. Most deleted folders go to the Recycle Bin, so you can easily get them back if needed. You have several options, from keyboard shortcuts to command-line tools, to delete folders permanently or temporarily.

Which 🪟 Windows 11 folders can be deleted?

Check the Location: Files in your Downloads, Videos, Desktop, or personal folders are generally safe to review and delete if unneeded. Be very cautious with files inside C:\Windows, C:\Program Files, or C:\Program Files (x86).

Was this guide helpful?

Tags: #Windows 11
Was this helpful?
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

📚 Related Tutorials

How to Display Full Path in Windows 11 File Explorer
Windows How to Display Full Path in Windows 11 File Explorer
How to Disable Command Prompt in Windows 11
Windows How to Disable Command Prompt in Windows 11
How to Change Windows Terminal Themes
Windows How to Change Windows Terminal Themes
How to Enable Recycle Bin for USB Drives and Other Removable Drives in Windows 11
Windows How to Enable Recycle Bin for USB Drives and Other Removable Drives in Windows 11

No comments yet — be the first to share your thoughts!

Leave a Comment

Your email address will not be published. Required fields are marked *