How do I access a specific directory so I can then retrieve images in that directory with a specific file extension?

2 visualizaciones (últimos 30 días)
How do I access a specific directory so I can then retrieve images in that directory with a specific file extension?

Respuestas (1)

Stephen23
Stephen23 el 9 de Sept. de 2019
Editada: Stephen23 el 9 de Sept. de 2019
D = 'relative or absolute path to the specific directory';
S = dir(fullfile(D,'*.png'));
C = {S.name} % output cell array

Categorías

Más información sobre File Operations en Help Center y File Exchange.

Productos


Versión

R2019a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by