Any help at all to point me down a path to solving this would be much appreciated.
The Problem 1:
I have around 15k CAD files i need to check the extension and rename to DGN.
Someway of have the batch file checks all the sub folders of the main CAD file and change and files that do not have the proper extension to DGN.
The file system is as follows:
L:\Michael\Organized Updated Drawings\32\CAD\A\32-A-009.DGN
The main structure is the bold section.
I have a directory legend with all the numbers and letters used in the file system.
You first have the number area the drawing is in and then if it’s a cad file, next are the letter(s) which determines what discipline it is (water, electric, etc).
The Problem 2:
I also have an additional 10k CAD files that where mass imported in a single folder to sort through.

Each file has varying extensions that denote what area the file belongs to in the paper mill I work for.
The old system would save them as such.
5232168419.70K
5213541516.30I
5516684651.80S
I need to change the extension of each file to DGN.
Like this:
5232168419.DGN
5213541516.DGN
5516684651.DGN
I did figure out how to create a list.txt of the files and pull that into excel.
I was using ="ren "&A1&" "&D1 to rename the extensions all to DGN.
I think i would be better to if i can place them in sub folders based on there original extension.
Such as if the file is like this one.
5516684651.80S
I would be great for the batch file to look at the extension first and the place it in its own sub folder called 80S and then change the extension to the proper DGN one.
I know this asking a lot at once but again looking for some direction.