i just want to know how to delete all files from a folder with .gb1 extension
thanks,
Related Posts
windows - delay write failed (every few minutes)
right now i have nothing put in and have done a full reformat and reinstalled xp sp2 disc i hadit to[...]
How to repair widows xp
im going to try fix my dad windows xp sp3 soon.. it has trouble booting up.. only boots in debug mod[...]
Remove the icon from notification area in win98
I have recently made a schedule task in Win98 to shotdown my comp every day, at the same time, if I [...]
Dual boot Problem in Windows Xp & Windows 7
Dual boot Problem in Windows Xp & Windows 7I installed XP on a system with Windows 7 and now I can't[...]
How to change/resize hard disk partitions in XP
How to change/re size hard disk partitions in XPi know its possible somehow in Win 7 and Vista, but [...]
Subscribe to:
Post Comments (Atom)
Powered by Blogger.
open the folder , then use the button Search at the top
ReplyDeletesearch for *.gb1
then select them all and delete
ok well my issue here is that i am not using, cd, rather i am running it from a .bat file
ReplyDeleteCode:
@echo off
echo -------------------
echo Deletes GB1 Files
echo -------------------
del docs *.gb1 /S /Q
echo Delete Complete!
Pause.
when i do that it deletes all files with .gb1 extension in the folder it is in and it deletes the contents of docs, even the ones that are not .gb1 files
THanks very much
EDIT GOT IT TO WORK BY CHANGING IT TO THIS
Code:
@echo off
echo -------------------
echo Deletes GB1 Files
echo -------------------
cd *docs
del *.gb1 /S /Q
echo Delete Complete!
Pause.