How to rename many files in a folder simultaneoulsy using matlab
Mostrar comentarios más antiguos
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.
Respuesta aceptada
Más respuestas (1)
DGM
el 24 de Mayo de 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.
1 comentario
parvathy prathap
el 24 de Mayo de 2021
Categorías
Más información sobre Environment and Settings en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!