Borrar filtros
Borrar filtros

loop Will only open the files in starting folder

1 visualización (últimos 30 días)
Bertrand
Bertrand el 19 de Mayo de 2024
Comentada: Bertrand el 20 de Mayo de 2024
I want to create a script that opens a folder and goes in to every subfolder and pulls out .mat files. The following code only pulls out the .mat files that are located in the starting fold even though it gathers all sub folder directories. Any help would be greatly appreciated!
startingFolder = pwd;
root = uigetdir(startingFolder);
allSubfolders = genpath(root);
subFolders = regexp(allSubfolders, ';', 'split');
for subFolderCount = 3 : length(subFolders)
% Get this subfolder.
thisSubFolder = subFolders{subFolderCount};
% Get a list of MAT files in this subfolder.
matFiles = dir(fullfile(thisSubFolder, '*.mat'));
end

Respuesta aceptada

Voss
Voss el 19 de Mayo de 2024
matFiles = dir(fullfile(pwd,'**','*.mat'));

Más respuestas (0)

Categorías

Más información sobre Environment and Settings en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by