Help with Simple Directory Operations
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Hello,
I have a simple question. I want to first check to see if a folder exists in the working directory. If not, then I create it. I got this part to work.
But now I want to add a second check outside the above check to see if the folder is empty. What is the easiest way todo the last check ?
Thank you!
0 comentarios
Respuesta aceptada
Más respuestas (2)
the cyclist
el 21 de Mzo. de 2013
files = ls('folderName');
isempty(files)
1 comentario
Jan
el 21 de Mzo. de 2013
LS includes an expensive creation of a string, so DIR might be more direct.
Jan
el 21 de Mzo. de 2013
if exist(fullfile(cd, 'FolderName'), 'dir') == 0
mkdir(cd, 'FolderName');
end
0 comentarios
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!