Code to rename fiiles
조회 수: 8 (최근 30일)
이전 댓글 표시
I am looking to rename files that are titled "Untitled.0001.jpg" to 1,2,3...,n.jpg
I have a bunch of files that get spit out from a program in that format, but just want to name them by a number. How would I go about doing that?
댓글 수: 0
답변 (1개)
Azzi Abdelmalek
2016년 8월 10일
편집: Azzi Abdelmalek
2016년 8월 10일
f='Untitled.0001.jpg'
nf=regexprep(f,'(\S+\.)(\d+)(\.jpg)','${num2str(str2num($2))}$3')
Or
f='Untitled4.0201.jpg'
nf=regexp(f,'[1-9]\d+\>.jpg','match','once')
To rename the file
folder='C:\Users\you\Documents\MATLAB' % folder where your jpg are located
filetype=fullfile(folder,'*.jpg')
file=dir(filetype)
filename={file.name}
for k=1:numel(file)
f=filename{k}
nf=regexp(f,'[1-9]\d+\>.jpg','match','once')
move(fullfile(folder,f),fullfile(folder,nf))
end
댓글 수: 3
Image Analyst
2016년 8월 11일
To run, type the F5 key or click the green Run triangle on the tool ribbon.
To master MATLAB, see this http://www.mathworks.com/matlabcentral/answers/8026-best-way-s-to-master-matlab
참고 항목
카테고리
Help Center 및 File Exchange에서 File Operations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!