I'm thinking of using Excel Visual Basic to standardize the name of 6000 files in a given folder. These files are mixed between photos and documents, so there are a variety of extensions (DOC, DOCX, PDF, TIF, TIFF, JPG, JPGEm BMP, PNG, MSG ...).
My intention would be to go through the folder and make all the names of the files in uppercase and the extension in lowercase, as in the example:
-
paramentro contabil.PDF
will be renamed asPARAMETRO CONTABIL.pdf
-
OPPO - finacials.tif
will be renamed asOPPO - FINANCIALS.tif
I imagine I would have to use a For Each Next
loop to run the code, but I do not know how to scale the variables and if there is any special function to rename files out of Excel.
What I'm trying to do is possible?