使用Matlab对文件夹下文件批量重命名

利用Matlab将old_file文件夹下所有的.jpg格式文件夹重命名后保存到new_file文件夹下。

clear;clc;

path_name = 'old_file';%待重命名源文件路径
file =dir(strcat(path_name,'/*.jpg'));%读取文件夹下所有.jpg文件
num_file = length(file);%文件数量

for i = 1:num_file
	old_file_name =file(i).name;
    path_img = strcat(path_name,'/',old_file_name);
    img = (imread(path_img));
    imwrite(img,strcat('new_file/',num2str(i),'.jpg'));
end

disp(['重命名完成']);

你可能感兴趣的:(Matlab程序)