Borrar filtros
Borrar filtros

How to Read a file with unknown name

15 visualizaciones (últimos 30 días)
naman
naman el 24 de En. de 2017
Comentada: naman el 24 de En. de 2017
Hi
I get one .csv file in a directory and I cannot control the name of it. Therefore, I want to read it without knowing its name. How can I do it ?

Respuesta aceptada

John Chilleri
John Chilleri el 24 de En. de 2017
Editada: John Chilleri el 24 de En. de 2017
Hello,
You can do so like this (assuming only one csv file):
A = dir('*.csv');
B = csvread(A.name);
Hope this helps!
  1 comentario
naman
naman el 24 de En. de 2017
Yes, this solves the problem. Thanks

Iniciar sesión para comentar.

Más respuestas (1)

Image Analyst
Image Analyst el 24 de En. de 2017
Use dir('*.csv') to get a list of all csv files in that folder. See the FAQ: http://matlab.wikia.com/wiki/FAQ#How_can_I_process_a_sequence_of_files.3F

Categorías

Más información sobre Data Import and Analysis 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