Creating a cell structure from directory file names

Good afternoon,
I am currently trying to create a cell array of file names using the dir function. For example:
datedir = dir('directorygoeshere');
I want to make my function "datedir" to be a 1xn cell and am having a bit of difficulty choosing the right conversion function. Any help would be greatly appreciated. Thanks!

回答 (1 件)

Thorsten
Thorsten 2016 年 9 月 6 日

6 投票

datedir = dir('directorygoeshere');
filenames = {datedir.name}:

カテゴリ

ヘルプ センター および File ExchangeFile Operations についてさらに検索

タグ

質問済み:

2016 年 9 月 6 日

回答済み:

2016 年 9 月 6 日

Community Treasure Hunt

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

Start Hunting!

Translated by