Rename files in the folder

2 views (last 30 days)
Hi,
I have files like B00001.im7 ..... B10000.im7 inside the particular folder, Here, I intend to replace 'B' by 'P'
for e.x. B00001.im7 to P00001.im7. Please suggest the way to do this..

Accepted Answer

Mario Malic
Mario Malic on 21 Sep 2020
Edited: Mario Malic on 21 Sep 2020
movefile 'B00001.im7' 'P00001.im7' % or supply full path to the files
  5 Comments
Mario Malic
Mario Malic on 21 Sep 2020
Edited: Mario Malic on 21 Sep 2020
This should do it.
Dir_files = dir('*.im7');
List_Files = {Dir_files.name}'; % Cell (length(Dir_files, 1) that contain filenames
List_Files(:,2) = List_Files(:,1); % Copying cells to second column
for ii = 1:length(List_Files)
List_Files{ii,2}(1) = 'P'; % Change first character in 2nd column of each file
movefile (List_Files{ii,1}, List_Files{ii,2});
end
Turbulence Analysis
Turbulence Analysis on 21 Sep 2020
Thanks a lot. It worked perfectly...

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!