Populate listbox with only directories?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Ibro Tutic
el 16 de Jun. de 2017
Respondida: Adam
el 16 de Jun. de 2017
I am trying to populate a listbox with only the folder names (directories) in a folder. The code below does that, but there are some weird '.' and '..' directories. How would I get only the folders, and not those dots?
S = dir(path);
N = {S.name};
set(handles.listbox4,'String',N)
0 comentarios
Respuesta aceptada
Adam
el 16 de Jun. de 2017
S = dir( pathName );
N = { S( [ S.isdir ] ).name };
N = N( ~cellfun( @(x) strcmp( x, '.' ) || strcmp( x, '..' ), N ) );
set(handles.listbox4,'String',N)
should work fine. Your method would also pick up files as well as directories. I assume from your title that you don't want that.
0 comentarios
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!