I have been given data which cannot be interpreted by my software unless it has a lowercase letter at the end. The data was delivered with an uppercase letter at the end.
Somehow I need to first recursively loop through all folders and find whether the filename ends with a letter and then change it to lowercase.
I think python could do this, but I don´t know how,. Any help would be great!
yours,
Rob
List the files recursively. If the last character is an alphabet change it to lowercase and rename the file
Modifying the program as per the poster’s latest requirement