Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
HELP Renaming files with a .bat file
Name: Pete Smith Date: August 4, 2000 at 19:49:21 Pacific
Comment:
I have tried lots of ways to rename files by using a batch file but I can not add prefixes to the my old file names by using wild cards. Is there a way to rename with wild cards as the samples below. old name 123.txt 456.txt 789.txt to new name aaa123a.txt aaa456a.txt aaa789a.txt
I have about 7,000 files to rename like the above sample so if anyone knows how to do this with a batch file or some other way in dos or windows I would greatly appreciate your help
Summary: Hi, Below is a file for adding to the beginning of a file or adding to the end of a file. In dos it will allow you to start (it then exits) but alows you to type in the command with the help file visa...
Summary: Hello. My problem is exact like the problem "making a .bat file to get input" in DOS\Page 1... BUT it is in NT 4.0. Like the answer from Secret_doom....but like he sayes, "There are other methods to g...
Summary: The following batch script will do it: @echo off if "%1"=="GoTo" goto %2 %comspec% /v:on /c %0 GoTo start goto eof :start echo This program will sequencially rename all files with .TXT echo extention ...