Clear Filters
Clear Filters

How to rename many files in a folder simultaneoulsy using matlab

4 views (last 30 days)
I have jpeg files with names like
501(501)
501(502)
501(503)
501(504) etc etc
I want to rename it as
501
502
503
504 etc etc
There are thousands of such files in the folder. So its difficult to do it manually. Kindly advise how to do this using matlab. Any help on this regard would be appreciated.

Accepted Answer

Sulaymon Eshkabilov
Sulaymon Eshkabilov on 24 May 2021
Hi,
Here is a nice robust answer code to rename files proposed by Walter that you can employ in your exercise.
Good luck
  1 Comment
parvathy prathap
parvathy prathap on 24 May 2021
Thanks for the response. I think it refers to a different requirement, let me see if i can get an idea from it.

Sign in to comment.

More Answers (1)

DGM
DGM on 24 May 2021
Not everything has to be done with Matlab.
If you're using *nix:
rename 's/501\(//;s/\)//' 501*.jpg
But considering that you're describing filenames with no extension, I'm guessing you might be in Windows.

Categories

Find more on Entering Commands in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!