How do i load a file automatically in a particular folder just by a part of the filename?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Sachin NARAIN
el 13 de Mayo de 2019
Comentada: Sachin NARAIN
el 13 de Mayo de 2019
I have a file named 'Annot_CU' in a folder.I want to load this file just finding the word 'Annot' in the particular folder.
I am not able to find the code to this .
Thank you in advance.
0 comentarios
Respuesta aceptada
Rik
el 13 de Mayo de 2019
folder='C:\Path\To\Your\Data';
list_of_files=dir(fullfile(folder,'Annot*'));
%remove any matching folders
list_of_files([list_of_files.isdir])=[];
Más respuestas (0)
Ver también
Categorías
Más información sobre Startup and Shutdown 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!