BalAzs
0
Q:

windows 10 fast delete

The two commands that users require are Del, for deleting files, and Rmdir,
for removing directories.

1. Tap on the Windows-key, type cmd.exe and select the result to load the
command prompt.

2. Navigate to the folder that you want to delete (with all its files and
subfolders). Use cd path, e.g. cd o:\backups\test\ to do so.

3. The command del /f /q /s *.* > NUL deletes all files in that folder structure,
and omits the output which improves the process further.

4. Use cd.. to navigate to the parent folder afterwards.

5. Run the command rmdir /q /s foldername to delete the folder and all of its
subfolders.

The commands may require some explanation :=
=========================================

del /f /q /s *.* > NUL :-
----------------------
/f -- forces the deletion of read-only files.
/q -- enables quiet mode. You are not ask if it is ok to delete files
(if you don't use this, you are asked for any file in the folder).

/s -- runs the command on all files in any folder under the selected structure.
*.* -- delete all files.
> NUL -- disables console output. This improves the process further,
shaving off about one quarter of the processing time off of the console command.
================================================================================

rmdir /q /s foldername :- 
------------------------
/q -- Quiet mode, won't prompt for confirmation to delete folders.
/s -- Run the operation on all folders of the selected path.
foldername -- The absolute path or relative folder name,
e.g. o:/backup/test1 or test1
2
Run the command rmdir /q /s foldername to delete the folder and all of its
subfolders.
0

New to Communities?

Join the community