Example File:
AS_Barrel01.AG
I want to rename it to:
AS_Barrel01.back
I want this to be done to the entire directory and sub-directories if they exist.
Here's what I usually use: cd /d "C:\Folder" for /f "tokens=* delims= " %%a in ('dir /b /ad /s') do rename "%%a\*.AG" "*.back"
As I mentioned this is completely ineffective with these particular files. I tried variants like *_*.AG but it didn't work, I guess it isn't that simple.
