Edu-IT Posted November 4, 2022 Posted November 4, 2022 Does anyone know of a way to bulk rename files (images) where I have the current and new filename in two columns in a spreadsheet?
Boredguy Posted November 4, 2022 Posted November 4, 2022 Powershell A simple for loop to read a CSV file and rename command could do it. Rename-Item -Path -NewName
ozydave Posted November 4, 2022 Posted November 4, 2022 Bulk rename utility. Great program, been using it for years
ozydave Posted November 4, 2022 Posted November 4, 2022 Bulk rename utility. Great program, been using it for yearsSorry here is the link https://www.bulkrenameutility.co.uk/ 1
dhicks Posted November 4, 2022 Posted November 4, 2022 Does anyone know of a way to bulk rename files (images) where I have the current and new filename in two columns in a spreadsheet? The CONCATENATE function in Excel - if your data was simply in the first two columns, put a forumula something like this in the third column: =CONCATENATE("rename ", A1, B1) Replicate the formula down the sheet, then copy-and-paste the results to a .bat file and run it. 2
Rob_D Posted November 4, 2022 Posted November 4, 2022 Another vote for Bulk Rename Utility. We've used it a bunch when photos come in with the student admin number as the file name and we wan the student's name.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now