Azzera filtri
Azzera filtri

Renaming folders with different names

1 visualizzazione (ultimi 30 giorni)
Eva Balgova
Eva Balgova il 24 Mag 2019
Modificato: Rik il 24 Mag 2019
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 Commenti
Guillaume
Guillaume il 24 Mag 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?
Eva Balgova
Eva Balgova il 24 Mag 2019
Many thanks for your reply.
The subfolders to rename are: 'ANALYSYS_DT_REG_P000_24_05_2019' and I would like to rename them to '24_05_19_ANALYSYS_DT_REG_P00'. They are in the ToM_00 main folders.

Accedi per commentare.

Risposte (1)

Rik
Rik il 24 Mag 2019
Modificato: Rik il 24 Mag 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

Categorie

Scopri di più su File Operations in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by