Borrar filtros
Borrar filtros

File Names inside a folder(x) and subfolders of(x)

4 visualizaciones (últimos 30 días)
karan goyal
karan goyal el 5 de Feb. de 2019
Comentada: Image Analyst el 6 de Feb. de 2019
i want to find out all the files having (csv extension) within a folder (x) and the fileshaving (csv extension) within the subfolders of folder(x).
Also i want to save the output in a text file.

Respuesta aceptada

StefBu
StefBu el 5 de Feb. de 2019
Here you go:
Path = 'C:\Users\' % wherever you want to search
searchPath = [Path ,'\**\*.csv']; % Search in folder and subfolders for *.csv
Files = dir(searchPath); % Find all .csv files
% Save to text file
fid = fopen('C:\Users\FoundFiles.txt','wt'); % create file
formatSpec= '%s\n' % new Line after String
for i = 1:size(Files,1) % write each string in for-loop
fprintf(fid,formatSpec, Files(i).name);
end
fclose(fid); % close file again
Greetings
Stefan
  2 comentarios
karan goyal
karan goyal el 6 de Feb. de 2019
it worked man.thank you so much .
the only thing which i would like to further take is that i want to see the folders name too in the text file and all the files in it and then loop out of that folder and then again write the next folder's name and the files in it.
what changes can i do in the code?
Image Analyst
Image Analyst el 6 de Feb. de 2019
Not sure what you want. I'm making a couple of guesses.
To see anything IN the text files, you'll have to call fopen(), then fgetl(), and then fclose().
To split apart a full filename into folder, base filename with no extension, and extention, use fileparts():
[folder, baseFileNameNoExt, ext] = fileparts(fullFileName);
Not sure why you need to "loop out of that folder" (or even what that means exactly) and have another loop after it. Why can't you do everything about listing/printing filenames and folder names inside that main loop?

Iniciar sesión para comentar.

Más respuestas (1)

Image Analyst
Image Analyst el 5 de Feb. de 2019
See attached demo.

Categorías

Más información sobre Low-Level File I/O 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!

Translated by