Deltree in Windows XP
If you are like me and sometimes still use the command line to delete stuff and you miss the deltree command here is a batch file which does the same.
Save the contents in your %WINDOWS% directory and name it as deltree.bat
The other problem I seem to face nearly everyday is the LS command. Since there is no inbuild LS in Windows XP here is a simple LS for windows.
Save the contents in your %WINDOWS% directory and name it as deltree.bat
@echo offYou can also use del /s /y if you do not want the prompt, but that could be a little dangerous.
del /s %1
rd /s %1
The other problem I seem to face nearly everyday is the LS command. Since there is no inbuild LS in Windows XP here is a simple LS for windows.
@echo offThese are batch files I use normally and I know its not something out of the world but it makes things simpler for me. So I thought I would share it.
dir %1
Comments