How to use DIR to extract file data (name, date, location/a​ddress/tra​nsit) from multiple folders and subfolders?

19 visualizaciones (últimos 30 días)
Hi everyone,
I've read other posts regarding dir but they didn't seem to help me. I'm trying to use dir to get a structure containing file names, dates, and locations and then export it into an excel file. The issue I have been having is that I can't seem to automate this and have to manually move my .m file to each folder of interest and run it in order to gather this information. I'm not sure how to move down each folder and then return to repeat the process automatically. This is what I have right now, but I'm fairly new to this.
x=dir;
writetable(struct2table(x), 'test.xlsx')
So my question is: How can I search through multiple folders and their subfolders for documents and gather this info and put it into a structure that can be exported as an excel sheet?
Here is an example of the folder of interest (crossed out names for security purposes). Each of these files has multiple subfolders, each containing documents and more subfolders. Thanks!

Respuesta aceptada

Fangjun Jiang
Fangjun Jiang el 18 de Sept. de 2018
x=dir(fullfile(MyFolder,'**/*.*')) will give you all the files and folders in MyFolder and all its subfolders.
  5 comentarios
rbme17
rbme17 el 19 de Sept. de 2018
Thank you so much, this is exactly what I was looking for! I would like to add that the file name needs to be quoted with apostrophes:
x=dir(fullfile('MyFolder','**/*.*'))
dpb
dpb el 19 de Sept. de 2018
" the file name needs to be quoted with apostrophes"
Only if is character literal; if MyFolder is a variable it can not be quoted.

Iniciar sesión para comentar.

Más respuestas (0)

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!

Translated by