欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

linux 下 使用matlab 批量更改文件名

程序员文章站 2022-04-18 19:26:26
...
clear;
path='文件路径';

image_Files = dir(fullfile(path,'/','*.jpg'));
Length = length(image_Files);
for k=1:Length
    oldname=strcat(path,'/',image_Files (k).name);
    newname=strcat(path,'/','A_', num2str(k,'%06d'),'.jpg');
    command = ['mv' 32 oldname 32 newname];
    status = dos(command);
    if status == 0
        disp([oldname, ' 已被重命名为 ', newname])
    else
        disp([oldname, ' 重命名失败!'])
    end
end