I notice that the DOS rmdir doesn't allow you to give it
the '*' wildcard as an argument. What does one do when one
needs to remove a bunch of directories if one doesn't know
their name, and do it in DOS?
Spammay Blockay wrote:
I notice that the DOS rmdir doesn't allow you to give it
the '*' wildcard as an argument. What does one do when one
needs to remove a bunch of directories if one doesn't know
their name, and do it in DOS?
You could try using the FOR command:
for (%f in tmp*) do rmdir %f
I notice that the DOS rmdir doesn't allow you to give it
the '*' wildcard as an argument. What does one do when one
needs to remove a bunch of directories if one doesn't know
their name, and do it in DOS?
- Tim
use deltree-|
http://www.computerhope.com/deltree.htm
On Wed, 30 Jul 2003 19:03:42 GMT, SPAMBLOCKER@BLOCKEDTOAVOIDSPAM.com -|>(Spammay Blockay) wrote:
I notice that the DOS rmdir doesn't allow you to give it
the '*' wildcard as an argument. What does one do when one
needs to remove a bunch of directories if one doesn't know
their name, and do it in DOS?
- Tim
I notice that the DOS rmdir doesn't allow you to give it--- Synchronet 3.18b-Win32 NewsLink 1.113
the '*' wildcard as an argument. What does one do when one
needs to remove a bunch of directories if one doesn't know
their name, and do it in DOS?
- Tim
--
For Windows NT/2000/XP issue the command: del /?
See if the /S command will help.
That is del c:\test\*.* /s will delete all files in c:\test and all c:\test's children
subdirectories.
Then issue: rmdir c:\test /s
to remove the empty folders.
Isn't that what "RMDIR /s <path>" does?
Bryan
Spammay Blockay <SPAMBLOCKER@blockedtoavoidspam.com> wrote:
I notice that the DOS rmdir doesn't allow you to give it
the '*' wildcard as an argument. What does one do when one
needs to remove a bunch of directories if one doesn't know
their name, and do it in DOS?
- Tim
--
I need to delete all the subdirectories in %MYDIR%,
and all the files in those subdirectories (ie. the
entire directory tree of each of these directories),
BUT NOT ANY OTHER FILE in %MYDIR%.
Spammay Blockay wrote:
I need to delete all the subdirectories in %MYDIR%,
and all the files in those subdirectories (ie. the
entire directory tree of each of these directories),
BUT NOT ANY OTHER FILE in %MYDIR%.
Mhhh... is backing up the files, deleting files
and directories, then copying the files back
an option?
Is Windows Scripting Host (should be in 2K) an
Option?
In article <bgboev$bnp$1@wildfire.prairienet.org>,
<psc@prairienetX.org> wrote:
Isn't that what "RMDIR /s <path>" does?
Nope, RMDIR doesn't recognize wildcards -- witness:
C:\>mkdir TESTDIR
C:\>cd TESTDIR
C:\TESTDIR>mkdir A
C:\TESTDIR>mkdir B
C:\TESTDIR>dir
Volume in drive C is Local Disk
Volume Serial Number is 7CD1-879E
Directory of C:\TESTDIR
07/31/2003 12:00p <DIR> .
07/31/2003 12:00p <DIR> ..
07/31/2003 12:00p <DIR> A
07/31/2003 12:00p <DIR> B
0 File(s) 0 bytes
4 Dir(s) 25,187,280,384 bytes free
C:\TESTDIR>rmdir /s *
*, Are you sure (Y/N)? y
The filename, directory name, or volume label syntax is incorrect.
C:\TESTDIR>
Any other ideas?
- Tim
Bryan
Spammay Blockay <SPAMBLOCKER@blockedtoavoidspam.com> wrote:
I notice that the DOS rmdir doesn't allow you to give it
the '*' wildcard as an argument. What does one do when one
needs to remove a bunch of directories if one doesn't know
their name, and do it in DOS?
- Tim
--
----- Synchronet 3.18b-Win32 NewsLink 1.113
Actually, I was suggesting for your example "rmdir /s TESTDIR", but I see
in a leter post you need to preserve TESTDIR and any files in TESTDIR. My >suggestion gets rid of them as well. Sotty, that's all I have.
Bryan
Spammay Blockay <SPAMBLOCKER@blockedtoavoidspam.com> wrote:
In article <bgboev$bnp$1@wildfire.prairienet.org>,
<psc@prairienetX.org> wrote:
Isn't that what "RMDIR /s <path>" does?
Nope, RMDIR doesn't recognize wildcards -- witness:
C:\>mkdir TESTDIR
C:\>cd TESTDIR
C:\TESTDIR>mkdir A
C:\TESTDIR>mkdir B
C:\TESTDIR>dir
Volume in drive C is Local Disk
Volume Serial Number is 7CD1-879E
Directory of C:\TESTDIR
07/31/2003 12:00p <DIR> .
07/31/2003 12:00p <DIR> ..
07/31/2003 12:00p <DIR> A
07/31/2003 12:00p <DIR> B
0 File(s) 0 bytes
4 Dir(s) 25,187,280,384 bytes free
C:\TESTDIR>rmdir /s *
*, Are you sure (Y/N)? y
The filename, directory name, or volume label syntax is incorrect.
C:\TESTDIR>
Any other ideas?
- Tim
Bryan
Spammay Blockay <SPAMBLOCKER@blockedtoavoidspam.com> wrote:
I notice that the DOS rmdir doesn't allow you to give it
the '*' wildcard as an argument. What does one do when one
needs to remove a bunch of directories if one doesn't know
their name, and do it in DOS?
- Tim
--
--
In article <bgbuia$djs$3@wildfire.prairienet.org>,
<psc@prairienetX.org> wrote:
Actually, I was suggesting for your example "rmdir /s TESTDIR", but I see >>in a leter post you need to preserve TESTDIR and any files in TESTDIR. My >>suggestion gets rid of them as well. Sotty, that's all I have.
Bryan
Oh well, thanks anyway -- I hope someone out there knows the
answer (or if there IS an answer :-) ).
- Tim
Spammay Blockay <SPAMBLOCKER@blockedtoavoidspam.com> wrote:
In article <bgboev$bnp$1@wildfire.prairienet.org>,
<psc@prairienetX.org> wrote:
Isn't that what "RMDIR /s <path>" does?
Nope, RMDIR doesn't recognize wildcards -- witness:
C:\>mkdir TESTDIR
C:\>cd TESTDIR
C:\TESTDIR>mkdir A
C:\TESTDIR>mkdir B
C:\TESTDIR>dir
Volume in drive C is Local Disk
Volume Serial Number is 7CD1-879E
Directory of C:\TESTDIR
07/31/2003 12:00p <DIR> .
07/31/2003 12:00p <DIR> ..
07/31/2003 12:00p <DIR> A
07/31/2003 12:00p <DIR> B
0 File(s) 0 bytes
4 Dir(s) 25,187,280,384 bytes free
C:\TESTDIR>rmdir /s *
*, Are you sure (Y/N)? y
The filename, directory name, or volume label syntax is incorrect.
C:\TESTDIR>
Any other ideas?
- Tim
Bryan
Spammay Blockay <SPAMBLOCKER@blockedtoavoidspam.com> wrote:
I notice that the DOS rmdir doesn't allow you to give it
the '*' wildcard as an argument. What does one do when one
needs to remove a bunch of directories if one doesn't know
their name, and do it in DOS?
- Tim
--
--
In article <fvoiivs6i1hf80aiei7ca6ggpe84a9ov4q@4ax.com>,
Herman D. Knoble <hdk@psu.edu> wrote:
For Windows NT/2000/XP issue the command: del /?
See if the /S command will help.
That is del c:\test\*.* /s will delete all files in c:\test and all c:\test's children
subdirectories.
Then issue: rmdir c:\test /s
to remove the empty folders.
Thanks for your help, Herman, but I think I may not have
made myself clear.
In this case, I have a directory stored in the variable
name %MYDIR%. In %MYDIR% there exists a bunch of files,
and some directories, who's names I do not know.
I need to delete all the subdirectories in %MYDIR%,
and all the files in those subdirectories (ie. the
entire directory tree of each of these directories),
BUT NOT ANY OTHER FILE in %MYDIR%.
So, if I've got:
%MYDIR%\myFile1.txt
%MYDIR%\myFile2.cmd
%MYDIR%\myDir1\file1.txt
%MYDIR%\myDir2\abc
Then the directory trees %MYDIR%\myDir1 and %MYDIR%\myDir2
should be deleted, but nothing else.
Any way you can think of doing this in a batch file?
- Tim
Actually, I was suggesting for your example "rmdir /s TESTDIR", but I see -|>in a leter post you need to preserve TESTDIR and any files in TESTDIR. My -|>suggestion gets rid of them as well. Sotty, that's all I have.-|
Bryan
Spammay Blockay <SPAMBLOCKER@blockedtoavoidspam.com> wrote:
In article <bgboev$bnp$1@wildfire.prairienet.org>,
<psc@prairienetX.org> wrote:
Isn't that what "RMDIR /s <path>" does?
Nope, RMDIR doesn't recognize wildcards -- witness:
C:\>mkdir TESTDIR
C:\>cd TESTDIR
C:\TESTDIR>mkdir A
C:\TESTDIR>mkdir B
C:\TESTDIR>dir
Volume in drive C is Local Disk
Volume Serial Number is 7CD1-879E
Directory of C:\TESTDIR
07/31/2003 12:00p <DIR> .
07/31/2003 12:00p <DIR> ..
07/31/2003 12:00p <DIR> A
07/31/2003 12:00p <DIR> B
0 File(s) 0 bytes
4 Dir(s) 25,187,280,384 bytes free
C:\TESTDIR>rmdir /s *
*, Are you sure (Y/N)? y
The filename, directory name, or volume label syntax is incorrect.
C:\TESTDIR>
Any other ideas?
- Tim
Bryan
Spammay Blockay <SPAMBLOCKER@blockedtoavoidspam.com> wrote:
I notice that the DOS rmdir doesn't allow you to give it
the '*' wildcard as an argument. What does one do when one
needs to remove a bunch of directories if one doesn't know
their name, and do it in DOS?
- Tim
--
--
I don't know if you've read my other postings, but the solution
requires that the deleting mechanism be able to use environment
variables and wildcards. DELTREE can do this, but I'm using Windows 2000, >which doesn't come with it.
And you can't do:
rmdir %MYVARIABLE%\*
Just try it under Windows 2000, and you'll see that rmdir doesn't
understand wildcards.
On Fri, 01 Aug 2003 05:32:07 GMT, SPAMBLOCKER@BLOCKEDTOAVOIDSPAM.com
(Spammay Blockay) wrote:
I don't know if you've read my other postings, but the solution
Some, not all (odd propogation on this server ;-)
requires that the deleting mechanism be able to use environment
variables and wildcards. DELTREE can do this, but I'm using Windows 2000, >>which doesn't come with it.
Then get it?
http://www.techadvice.cc/files/s29k2/w95b/deltree.exe
And you can't do:
rmdir %MYVARIABLE%\*
Just try it under Windows 2000, and you'll see that rmdir doesn't >>understand wildcards.
Hmm, under WindowsXP,
rmdir %MYDIR%\
or
rmdir %MYDIR%\TEST\
both work. Don't forget the trailing slash. But perhaps 2K's rmdir
does things differently.
You can issue:
cd \
cd testdir
attrib +R *.* (make the files i testdir read only.)
del *.* /s /q (this will erase all files in A and B
attrib -R *.* (remove the Read Only bit)
Now A and B are empty and testdir files are ok.
Removing just these children subdirectories IA and B) is another matter.
Assuming that all files in Testdir have a file extension, and that no directries
under c:\testdir have extensions, one could issue:
CD \
cd testdir
dir /b *. > delthem.bat
Now delthem .bat would contain only subdirectoy names for subdirecties
under c:\testdir.
One could then edit this file using edlin (or even notepad) and insert before each line
the three characters 'rd ' (wiithout quotes), and then run: delthem.bat
Crude, but works.
Did you try:
rmdir %MYDIR%\*
I'll see if adding a trailing slash makes a difference, tho'.
Sysop: | Gate Keeper |
---|---|
Location: | Shelby, NC |
Users: | 785 |
Nodes: | 20 (1 / 19) |
Uptime: | 205:52:20 |
Calls: | 11,916 |
Calls today: | 2 |
Files: | 5,294 |
D/L today: |
33 files (44,720K bytes) |
Messages: | 553,319 |