rename the image name

조회 수: 1 (최근 30일)
sambath kumar
sambath kumar 2019년 9월 16일
답변: Image Analyst 2019년 9월 16일
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
Rik
Rik 2019년 9월 16일
What have you tried so far? Also, this is a public forum. If you want private help, hire a consultant.

댓글을 달려면 로그인하십시오.

답변 (2개)

Nicolas B.
Nicolas B. 2019년 9월 16일
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 2019년 9월 16일

카테고리

Help CenterFile Exchange에서 Historical Contests에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by