rename the image name

3 views (last 30 days)
sambath kumar
sambath kumar on 16 Sep 2019
Answered: Image Analyst on 16 Sep 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 Comment
Rik
Rik on 16 Sep 2019
What have you tried so far? Also, this is a public forum. If you want private help, hire a consultant.

Sign in to comment.

Answers (2)

Nicolas B.
Nicolas B. on 16 Sep 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 on 16 Sep 2019

Categories

Find more on Historical Contests 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!