Rename files in the folder

3 次查看(过去 30 天)
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..

采纳的回答

Mario Malic
Mario Malic 2020-9-21
编辑:Mario Malic 2020-9-21
movefile 'B00001.im7' 'P00001.im7' % or supply full path to the files
  5 个评论
Mario Malic
Mario Malic 2020-9-21
编辑:Mario Malic 2020-9-21
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
Thanks a lot. It worked perfectly...

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Search Path 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by