Open multiple files in different sub-folders with same starting file name
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi,
I have a multiple files I need to read in 39 sub-folders in Home directory. For example:
Home\folder1\Output_1 Home\folder2\Output_2 .. Home\folder39\Output_39
What is the MATLAB function I can use to open all the sub-folders so that I can use importfile function to read all Output files from 1 to 39.
Thanks in advance for the help.
0 comentarios
Respuestas (1)
Azzi Abdelmalek
el 22 de Mayo de 2014
Editada: Azzi Abdelmalek
el 22 de Mayo de 2014
for k=1:39
f=sprintf('Home\\folder%d\\output_%d',k,k)
% read f
end
2 comentarios
Image Analyst
el 22 de Mayo de 2014
Notice how you use a single backslash and Azzi used a double backslash? It makes a difference. But why not just use a single forward slash instead? It works just fine in Windows - Windows does not require backslashes.
Ver también
Categorías
Más información sobre File Operations en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!