Info

此问题已关闭。 请重新打开它进行编辑或回答。

renaming number of months to months

2 次查看(过去 30 天)
mahesh
mahesh 2014-1-6
关闭: MATLAB Answer Bot 2021-8-20
Hi,
For example, I have 24 files corresponding to JAN to DEC 2001 and JAN to DEC 2002.
the files are avg_1.nc avg_2, ....... avg_24.nc.
I want to rename it as
avg_jan_2001, avg_feb_2001,...........,avg_dec_2002.nc

回答(2 个)

ES
ES 2014-1-6
use a switch to find the new file name and use movefile to rename it!

Jan
Jan 2014-1-6
What have you tried so far and which problems do you have? You explain the problem, but what kind of help do you expect? Do you want us to solve your problem completely?
If you have 24 files only, renaming them manually will be faster than writing a program. But if you really want to create code for this task, use two loops:
counter = 0;
for year = 2001:2002
for month = 1:12
counter = counter + 1;
oldname = ...
newname = ...
movefile ...
end
end
A cell string of month names will help.

Community Treasure Hunt

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

Start Hunting!

Translated by