Download managers are special programs and browser extensions that help manage large and multiple downloads. 11 Free Download Managers. Download files over.
- How To Download Large Files Faster
- How To Get Faster Download
- How To Download Big Files From Google Drive Faster
On Windows 10, sometimes you need to delete folders that may contain a large number of files, and using File Explorer can take a long time. The reason is that during the delete process, Windows 10 needs to run calculations, analyze, and show updates as files and folder are deleted, something that usually takes time when deleting a large folder with thousands of files and subfolders.
However, using a few command lines, you can significantly speed up the process to just a few seconds. The only caveat is that you need to be comfortable using Command Prompt.
In this guide, you’ll learn the fastest way to delete large folders with thousands of files using command lines based on a Ghacks’ guide, and the instructions to add an option on the right-click context menu to automate the process with just one click.
How to delete a large folder fast using Command Prompt
In order to delete a large number of files, which otherwise will take a lot of time, you’ll need to use the del and rmdir commands using these steps:
How To Download Large Files Faster
Open Start.
Search for Command Prompt, right-click the result, and select Run as administrator.
Browse the folder path that you want to delete. For example,
C:Usersyour-user-nameDocumentsCarShow
.Type the following command to delete all the files in that folder without showing the output and press Enter:
In the above command, we use the /f switch to force the deletion of read-only files. The /q switch enables quiet mode. The /s switch executes the command for all files in any folder inside the folder you’re trying to remove. Using *.* tells the del command to delete every file, and > nul disables the console output improving performance and speed.
Type the following command to go back one level in the folder path and press Enter:
Type the following command to delete the folder and all its subfolders and press Enter:
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 your-folder-name is the variable you need to specify to delete the folder you want.
How to automate the process adding a context menu option
If the command lines aren’t your thing, you don’t usually delete tons of files, or you’re just looking for a faster way, it’s possible to add a right-click context menu option that will run batch file for the data you want to delete.
To add a context menu option that will delete files and folder extremely fast use the following steps:
How To Get Faster Download
Open Notepad.
Copy and paste the following lines into the Notepad text file.
Click on File and select Save As.
Save the file as quick_delete.bat, but make absolutely sure it uses the .bat extension. If you save it with an .txt extension, this will not work.
Move the quick_delete.bat file to
C:Windows
. This step is necessary, because the file need to be on a location that has a path environmental variable, but you can always create your own if you’re up to the challenge.Open Start.
Search regedit, right-click the result, and click Run as administrator.
Navigate to the following path:
Quick Tip: You can copy and paste the path in the address bar of the Registry if you’re running the Windows 10 Creators Update.Right-click the Shell (folder) key, and select New and click Key.
Name the key Quick Delete and press Enter.
Right-click the newly created key, select New and click Key.
Name the key command and press Enter.
Double-click the command key default String on the right side.
Change the value of the key with the following line and click OK.
Once you’ve completed the steps, you can right-click a folder and select Quick Delete to remove a large folder super fast.
How To Download Big Files From Google Drive Faster
While executing command you’ll get a security prompt which will prevent you from deleting files by accident. You can then press any key to proceed, or use the Ctrl + C keyboard shortcut or click the X button to cancel the operation.