rename the image name
2 次查看(过去 30 天)
显示 更早的评论
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
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.
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.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Large Files and Big Data 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!