Creating a structure array containing names of external files

1 次查看(过去 30 天)
Good day , how can I create a function that will receive a structure array containing the names of the external files that will be read in separate field ?
  2 个评论
LINDO MTSWENI
LINDO MTSWENI 2019-5-1
I think so because I have 3 external files that have to be received by the main function in a structure array format ,they will be used in the sub-functions

请先登录,再进行评论。

采纳的回答

Bob Thompson
Bob Thompson 2019-5-1
As Rik mentioned, it sounds like dir is what you want.
files = dir(path);
This will return a structure called 'files' which contains the names of all files in the path location (and other information). To call the specific file you want just do files(index).name.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 File Operations 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by