rename the image name

3 visualizaciones (últimos 30 días)
sambath kumar
sambath kumar el 16 de Sept. de 2019
Respondida: Image Analyst el 16 de Sept. de 2019
Hi, I have 1000 brain images with .nii extensions.
the brain image stored in the folder like this first images --> mainfolder/subfolder/braini_s24567_i54612.nii
second images --> mainfolder/subfolder/brain_r4356_i23456.nii, like this n number of images are there in the existing folder.
Here i need the help from you , i want to remove before i then create new folder and save rename brian images...
the new folder brain image sould be 54612.nii and 23456.nii
can i have to code if any one knows..
(Modding Edit: Please do not include e-mail addresses in posts. You can add an e-mail address to your account so people can contact you through your profile if they really want)
  1 comentario
Rik
Rik el 16 de Sept. de 2019
What have you tried so far? Also, this is a public forum. If you want private help, hire a consultant.

Iniciar sesión para comentar.

Respuestas (2)

Nicolas B.
Nicolas B. el 16 de Sept. de 2019
Hey,
I think, the commands that could help you are the following:
movefile('src', 'dest'); % move a file, you can even rename it with that function
copyfile('src', 'dest'); % copy a file, you can also rename it with that function
rmdir('my directory'); % delete folder which is empty
rmdir('my directory', 's'); % delete folder and its content
delete('my file'); % delete my file
Hope these commands will help you.

Image Analyst
Image Analyst el 16 de Sept. de 2019

Categorías

Más información sobre Historical Contests en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by