Borrar filtros
Borrar filtros

How to find the name of a file from a folder?

78 visualizaciones (últimos 30 días)
faran
faran el 6 de Dic. de 2016
Comentada: Alikouider el 28 de En. de 2022
Hi, I have a folder containing 1 hidden file and 10 images which are '.DS_Store 01 02 03 04 05 ... 09 10'. When I'm reading all the files from the folder it will read the hidden file too. I want to have the name of the hidden file, how can I do it? I used the "dir" command to read the names only but since the MAC is not updated it will not read anything. Is there any other command to read only names of the files in a folder? this is the program I used:
folderpath='/Users/faranak/Desktop'; folderpath=strcat(folderpath,[filesep '/**/' filesep]); filelist=dir(folderpath); filelist.name %%% which gives me the names of the files
  1 comentario
Jan
Jan el 6 de Dic. de 2016
Why does the update status of the OS prevent the dir command to reply file names?

Iniciar sesión para comentar.

Respuesta aceptada

Jan
Jan el 6 de Dic. de 2016
folderpath = '/Users/faranak/Desktop';
folderpath = fullfile(folderpath, '**'); % What is the meaning of "/**/" ???
filelist = dir(folderpath);
name = {filelist.name};
name = name(~strncmp(name, '.', 1)) % No files starting with '.'
  2 comentarios
faran
faran el 6 de Dic. de 2016
Thanks, it worked.
Alikouider
Alikouider el 28 de En. de 2022
We have the whole extension...
How can I get only the simulink file please?
'.slx ' files? from the folder
thanks in advance

Iniciar sesión para comentar.

Más respuestas (1)

Adam
Adam el 6 de Dic. de 2016
Editada: Adam el 6 de Dic. de 2016
If you just mean you want to strip out hidden files then there are probably numerous ways to do it, e.g.
import java.io.*;
f = File( filename );
hidden = get( f, 'Hidden' );
That works for a single file. You can easily apply it to a group of files. There is probably a similar java.io package/class that simply allows you to filter them straight out of a directory listing too, but it is ages since I used java.io.File in my work so I can't remember much about it.
f = File( myDirectory );
files = f.listFiles( );
will give you an array of java file objects to loop through too.

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!

Translated by