In windowsxp, I use "del /s /q myfolder" to delete a big folder. It will list all files and folders being deleted. is there a way to avoid that long display list? thanks,
+1
A:
or rmdir del /s /q myfolder > nul
Which is the equivalent of the Unix/Linux's /dev/null
which throws away any outputs as they are redirected to a black hole of a bit bucket...
Edit: Thanks Heinzi for my stoopid error....I have struck out the rmdir and replaced it with del
:)
Hope this helps, Best regards, Tom.
tommieb75
2010-01-29 23:59:36
You probably meant `del /s /q myfolder > nul`? rmdir does not produce output anyway...
Heinzi
2010-01-30 00:01:21