This file change the extension of all the files that has a previous one you chose. Made by me
To use it put it in the folder the files are and run it. When asked for input, do it. Ex:
Have fun.
WARNING: DON'T RUN THIS IN ANY SYSTEM FOLDER! DON'T PUT IT ON SYSTEM32 AND RENAME ALL YOUR DLL TO JPG!!!!!
^ inb4 someone do that and complain that their pc exploded
Source Code:
Code:
@echo off
color 0a
:start
cls
echo.
echo Mass Extension Changer - Made by Worms for RuneGear.net
echo.
echo Input the extension you wanna change:
set /p inp=Extension:
echo.
echo Intput the extension you want it to be:
set /p outp=Extension:
rename *.%inp% *.%outp%
echo.
echo Done! Press enter to restart.
set /p pause=
goto start