need a quick help with a wierd issue

ArkAoss

Banned
Aug 31, 2000
5,437
0
0
need to rename like 200 files from filename.### to filename### basically remove the dots, and suggestions on nt4?
 

Czar

Lifer
Oct 9, 1999
28,510
0
0
There are programs on tucows that can do this for you, dont know what they are called or anything
 

vi edit

Elite Member
Super Moderator
Oct 28, 1999
62,484
8,345
126
put them all in one folder in your root directory - IE c:\files

pull up a dos box

type in cd c:\files (or whatever the foler is)

now type in "rename *.* *" there is a space between *.* and * - be sure to leave out the ""'s
 

vi edit

Elite Member
Super Moderator
Oct 28, 1999
62,484
8,345
126
It should work, I use it all the time.

I usually have a bunch of files named ###.LY
I pull up a dos box and type in rename *.* *

They are now called ###
 

vi edit

Elite Member
Super Moderator
Oct 28, 1999
62,484
8,345
126
C:\poop>dir

Volume in drive C has no label
Volume Serial Number is 07D0-0610
Directory of C:\poop

. <DIR> 01-15-01 10:48a .
.. <DIR> 01-15-01 10:48a ..
EXPRESS INI 1,863 07-31-96 3:51p EXPRESS.INI
DLYSTART LOG 481 06-16-00 11:13p DlyStart.Log
EDESKTOP BMP 308,278 06-10-96 12:00a EDESKTOP.BMP
3 file(s) 310,622 bytes
2 dir(s) 2,993.04 MB free

C:\poop>rename *.* *

C:\poop>dir

Volume in drive C has no label
Volume Serial Number is 07D0-0610
Directory of C:\poop

. <DIR> 01-15-01 10:48a .
.. <DIR> 01-15-01 10:48a ..
EDESKTOP 308,278 06-10-96 12:00a EDESKTOP
EXPRESS 1,863 07-31-96 3:51p EXPRESS
DLYSTART 481 06-16-00 11:13p DlyStart
3 file(s) 310,622 bytes
2 dir(s) 2,993.00 MB free

C:\poop>

 

ArkAoss

Banned
Aug 31, 2000
5,437
0
0
yeah but these are ew.### and i need them to become ew###, but im almost done doing it manually
 

vi edit

Elite Member
Super Moderator
Oct 28, 1999
62,484
8,345
126
Ahhhh, gotcha
I could probably do that too, I check on it for you incase you need to do it in the future