rename files in a folder

148 ビュー (過去 30 日間)
Franziska Motka
Franziska Motka 2023 年 2 月 22 日
コメント済み: Franziska Motka 2023 年 2 月 24 日
Hi everyone,
I have a folder with hundreds of files in it, named like CBM32002.MR.STUDIES_PSYCHOLOGY.0001.0001.2023.02.07.18.44.40.94243.158444734. CBM320 is the participants ID. I accidently named this particants wrong, it would be CBM330 instead of CBM320. Could somebody help me to write a code which is renaming all files in the folder from CBM320... to CBM330... ?
Thanks for any help!
Best,
Franziska
  2 件のコメント
Stephen23
Stephen23 2023 年 2 月 22 日
What is the file extension of the files?
Franziska Motka
Franziska Motka 2023 年 2 月 22 日
they are all IMA files, so e.g. CBM32002.MR.STUDIES_PSYCHOLOGY.0001.0001.2023.02.07.18.44.40.94243.158444734.IMA

サインインしてコメントする。

採用された回答

Akira Agata
Akira Agata 2023 年 2 月 22 日
How about the following solution?
% Create list of all files in the current folder
s = dir(pwd);
s = struct2table(s);
% Extract the files with the file name of CBM320~
idx = startsWith(s.name, 'CBM320');
s = s(idx,:);
% Create current file names and new file names
oldFileName = s.name;
newFileName = replace(oldFileName, 'CBM320', 'CBM330');
% Change the file name one-by-one
for kk = 1:numel(oldFileName)
movefile(oldFileName{kk}, newFileName{kk});
end
  1 件のコメント
Franziska Motka
Franziska Motka 2023 年 2 月 24 日
Finally, I was able to try the code on my PC. It worked! Thank you very much for your help :)

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeConverters (High Power) についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by