Answer» Well, I have some files that are supposed to be .RAR files, but the splitter screwed up and made it all files that go like .001 .002. 003 etc.
So I'm asking if there is someway to rename all the files to have a .rar extension, doing it singlehandedly is going to take alot of time.
---- EDIT ----
Got the solution, played AROUND with the batch file
REN vty-0116.* vty-0116.*.rarI Sniff Games Form Warez Group ViTaliTy
@ECHO off Code: [Select]FOR /R NAME_OF_FOLDER %%I IN (*.*) DO ren "%%I" "%%~nI.rar" >nulpause
IT TAKES 2 Seconds To Say "Thanks" Thanks, I have found this very useful and implemented it into some of my batches ALREADY.
|