フィルターのクリア

rename photos in a specific folder

3 ビュー (過去 30 日間)
Mohanned Al Gharawi
Mohanned Al Gharawi 2021 年 1 月 1 日
コメント済み: Image Analyst 2021 年 1 月 2 日
Hello everybody,
I have a set of photos in a specific folder. Let say they start from Image00000_IR1 to Image00100_IR1. What I want is to rename these photos, so they will become Image00101_IR1 to Image00199_IR1. Is there a way that we could do that in MATLAB?
Thanks in advance.
  3 件のコメント
Mohanned Al Gharawi
Mohanned Al Gharawi 2021 年 1 月 2 日
編集済み: Stephen23 2021 年 1 月 2 日
I think that would not work with a folder that contains a hendred photo.
Should I put it in a loop or something?
Anyhow, I got a code from someone and I did it on my photos and I got an error says "Cannot copy or move a file or directory onto itself."
The code is:
base = 'F:\(second week)\Position1 - Copy'; % Set accordingly
list = dir(fullfile(base, '*.mim'));
for iList = 1:numel(list)
name = list(iList).name;
index = strfind(name, '.'); % Example, use "20110331093455.dcm"
newName = (name(1:index(1)-1));
% newName = ('Image10001_IR1');
movefile(fullfile(base, name), fullfile(base, [newName, '.mim']));
end
I dont know where is my error? Could you help me with that?
Stephen23
Stephen23 2021 年 1 月 2 日
"I dont know where is my error?"
The orignal name and the new name are exactly the same. It appears that you might want to change the file extension, but your code just uses exactly the same file extension.
The robust and recommended way to split the filename and file extension is to use fileparts, rather than messing about with indexing like this code does.

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

回答 (1 件)

Image Analyst
Image Analyst 2021 年 1 月 2 日
Why can't you just essentially follow the way I did it in your almost identical question:
  2 件のコメント
Mohanned Al Gharawi
Mohanned Al Gharawi 2021 年 1 月 2 日
I did the code but there are no files in the folder Renmed!
Image Analyst
Image Analyst 2021 年 1 月 2 日
See my reply over there.

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

カテゴリ

Help Center および File ExchangeAdding custom doc についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by