Renaming a lot of files

8 次查看(过去 30 天)
John
John 2012-3-18
Hello,
I've made a 1000 copies of a file in the current directory. For example
RW.a_process
Copy of RW.a_process
Copy (2) of RW.a_process.....
Copy (1000) of RW.a_process
Would anybody know how I could rename them to be
RW.a_process
RW1.a_process
RW2.a_process....
RW1000.a_process
Many thanks
John
  1 个评论
Jan
Jan 2012-3-18
It would be *much* easier to create the file with the correct file name from the beginning. Considering "RW", "Copy of RW" and "Copy (i) of RW" is possible, but not necessary.

请先登录,再进行评论。

采纳的回答

Sahyadri Vibhu
Sahyadri Vibhu 2012-3-20
You could use http://www.bulkrenameutility.co.uk/Main_Intro.php if you are using WIndows or something similar if you are using other OS

更多回答(2 个)

Image Analyst
Image Analyst 2012-3-18
These functions may come in helpful:
dir() to get the existing filenames.
strfind() to find parentheses.
sscanf() or str2double() to extract the number (optional since you can work with the extracted string directly).
sprintf() to create the new name.
movefile() to make a copy with the new name.
delete() to delete the file with the old name.
  4 个评论
John
John 2012-3-18
Hello,
I kinda have it working, except it is saving it as .mat files? How would I keep the original file extension?
Thank you
% Get all .a_process files in the current folder
BaseName='RW';
files = dir('*.a_process');
% Loop through each
for k = 1:length(files)
FileName=[BaseName,num2str(k)]
save(Filename)
end
Image Analyst
Image Analyst 2012-3-18
Not very robust at all. You will encounter problems with that code. I suggest you look at my code.

请先登录,再进行评论。


Image Analyst
Image Analyst 2012-3-18
Allright, since you at least took a shot at it, here's the code:
files = {'RW.a_process',...
'Copy of RW.a_process',...
'Copy (2) of RW.a_process',...
'Copy (1000) of RW.a_process'}
for k = 1 : length(files)
oldFileName = files{k}
leftParenthesisLocation = strfind(oldFileName, 'Copy (');
if leftParenthesisLocation >= 1
% Handle cases of Copy (nnn) of RW.a_process
rightParenthesisLocation = strfind(oldFileName(leftParenthesisLocation:end), ')');
if rightParenthesisLocation > 1
strNumber = oldFileName(leftParenthesisLocation+6:rightParenthesisLocation-1)
% Get name to the right of the right parenthesis.
newFileName = oldFileName(rightParenthesisLocation+5:end);
[folder, baseFileName, ext] = fileparts(newFileName);
newFileName = sprintf('%s%s%s', baseFileName, strNumber, ext);
fprintf('New Filename = %s\n', newFileName); % Print blank line.
end
else
% Handle case of Copy of RW.a_process
leftLocation = strfind(oldFileName, 'Copy of ');
if ~isempty(leftLocation)
% Get name to the right of the "Copy of ".
[folder, baseFileName, ext] = fileparts(oldFileName(leftLocation+8:end));
strNumber = 1;
newFileName = sprintf('%s%d%s', baseFileName, strNumber, ext);
fprintf('New Filename = %s\n', newFileName); % Print blank line.
end
end
end
I think you can figure out where to put the movefile(oldFileName, newFileName) and delete(oldFileName) in. Make sure you call exist(newFileName, 'file') before you delete the old one otherwise you may blow away your only copy!
  6 个评论
John
John 2012-3-19
Hello Image Analyst,
Sorry for bothering you again. If you have time to answer my questions quickly that would be great. It's nearly working just not quite there.
Thank you
John
Image Analyst
Image Analyst 2012-3-20
Did you include the file extension? It probably has one, even though you may be asking windows to hide it from you. I always turn off that windows option - I like knowing what extensions the files have, especially when you have files with the same base filename but different extensions. Try files = {'Copy (2) of RW.dat'} or whatever it is.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Startup and Shutdown 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by