
Delete large folder fast adding context menu option Once you complete the steps, all the files and folders in the location will delete quickly from your device. In the above command, we use the /q switch to enable quiet mode, the /s switch to run the command on all the folders, and FOLDER-NAME is the variable you need to specify to delete the folder you want. Type the following command to delete the folder and all its subfolders and press Enter: rmdir /q/s FOLDER-NAME Type the following command to go back one level in the folder path and press Enter: cd.

Using *.* tells the del command to delete every file and > nul disables the console output improving performance and speed. The /s switch executes the command for all files in any folder inside the folder you’re trying to remove. In the above command, we use the /f switch to force the deletion of read-only files. Type the following command to delete all the files in that folder without showing the output and press Enter: del /f/q/s *.* > nul In the command, make sure to update the path to the folder that you want to delete. Type the following command to navigate to the folder that you want to delete and press Enter: %USERPROFILE%\path\to\folder Search for Command Prompt, right-click the top result, and select the Run as administrator option. Warning: Typing the wrong path may delete files in the wrong location, so make sure to use these instructions carefully. To delete a large number of files on Windows 10 using the del and rmdir commands, use these steps: Delete large folder fast adding context menu optionĭelete large folder fast using Command Prompt.Delete large folder fast using Command Prompt.In this guide, you’ll learn the fastest way to delete large folders with thousands of files using command lines and the instructions to add an option on the right-click context menu to automate the process with just one click.

The only caveat is that you need to be comfortable using Command Prompt.

However, you can significantly speed up the process to only a few seconds using a few command lines. The reason is that during the delete process, Windows 10 needs to run calculations, analyze, and show updates as files and folders are deleted on the screen, something that usually takes time when deleting a large folder with thousands of files and subfolders. On Windows 10, sometimes you need to delete folders that may contain many files, and using File Explorer can take a long time.
