Renaming folders with different names
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi,
I am new to MATLAB, so please bear with me. I am currently trying to loop through folders and rename subfolders within them. The code below seems to work if the name of the subfolder is same in each folder, but I am not sure how to rename subfolders that are named differently. Any suggestions?
The code I use is:
cd ('D:\ToM_3_LEVEL1_ONLY');
for n=1:9
cd (['ToM_00', sprintf('%d',n)]);
movefile (['ANALYSYS_DT_REG_P000_24_05_2019'], ['24_05_19_ANALYSYS_DT_REG_P00', sprintf('%d',n)]);%here is the problem with MATLAB not recognising the file to be renamed. The last number is different for each folder...e.g.20191, 20192 etc.
cd ../..
end
2 commentaires
Guillaume
le 24 Mai 2019
I would recommend you never use cd. You can pass the full paths of the folders to movefile.
Which pattern of names are you trying to rename to which other pattern?
Réponses (1)
Rik
le 24 Mai 2019
Modifié(e) : Rik
le 24 Mai 2019
You can use something like this
%untested code
list=dir('D:\ToM_3_LEVEL1_ONLY\ToM_00\*');
list=list([list.isdir]);%keep only folders
for n=1:numel(list)
old_name=list(n).name;
%replace by something like regexp if needed
date=old_name([(end-9):(end-4) (end-1):end]);%remove 20 from year
name=old_name(1:(end-10));
new_name=[date '_' name];
movefile(old_name,new_name);
end
0 commentaires
Voir également
Catégories
En savoir plus sur Data Type Conversion dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!