how to get the specific model name/ extention(.mdl) from a folder which has count less depths?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Sudhakar Akki
el 17 de Sept. de 2016
Comentada: Sudhakar Akki
el 22 de Sept. de 2016
i would like to extract the *.sldd and *.h files from the folder which has multiple levels. example: folder X has X1,X2folders, X1 has Y1, Y2 and Y3 folders and Y2 has Z1,Z2 folders. Z2 folder contains some test.h file and Z1 contains some data.sldd
is there API to sort out the required file names based on extention?
0 comentarios
Respuesta aceptada
Jordan Ross
el 21 de Sept. de 2016
Hi Sudhakar,
In MATLAB R2016b you can use the "dir" function as follows:
>> list = [dir('**/*.sldd'); dir('**/*.h')]
The variable "list" will then contain a vector of structures which correspond to the files with the extensions .SLDD and .H.
For more information about the "dir" function see: http://www.mathworks.com/help/matlab/ref/dir.html
Más respuestas (0)
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!