- To rename all .bat files into .txt
Output may defer according to system folder so, write the code and execute/run your batch file
@echo off
ren F:\FolderName\*.bat *.txt
it will rename all .bat files into .txt files inside "F:\FolderName\"Program
After writing the code, Double-click your batch file, it will rename .bat files into .txt inside a specific location
:: cmd to rename all .bat files into .txt
ren [Folder_PATHNAME]\*.bat *.txt
Syntax to rename any '.oldExtension' files to '.newExtension'
ren [Folder_PATHNAME]\*.[oldExtension] *.[newExtension]
Concept
Coming Soon !
QuickPractice isn’t the thing you do once you’re good. It’s the thing you do that makes you good.