Naming new directories sequentially

1 visualizzazione (ultimi 30 giorni)
Nadeau Hahne
Nadeau Hahne il 20 Mag 2021
Commentato: Nadeau Hahne il 20 Mag 2021
Hello,
I am trying to figure out how to make new folders with a prefix and sequentially number them. I would like them to all contain the same sub directories:
Prefix_001
Subdirectory A
Subdirectory B
Prefix_002
Subdirectory A
Subdirectory B
Prefix_003
Subdirectory A
Subdirectory B

Risposta accettata

Stephen23
Stephen23 il 20 Mag 2021
N = number of directories
P = 'absolute/relative path to the parent directory';
for k = 1:N
D = sprintf('Prefix_%03d',k);
mkdir(fullfile(P,D))
mkdir(fullfile(P,D,'Subdirectory A'))
mkdir(fullfile(P,D,'Subdirectory B'))
end
  1 Commento
Nadeau Hahne
Nadeau Hahne il 20 Mag 2021
Perfect, thank you, I am new to scripting, this was super helpful!

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Search Path in Help Center e File Exchange

Prodotti


Release

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by