How can fix the Error using dir Function is not defined for 'cell' inputs?

rootpath = {};
D = dir(rootpath);

1 件のコメント

Stephen23
Stephen23 2016 年 2 月 25 日
編集済み: Stephen23 2016 年 2 月 25 日
Answer: Don't use a cell array for the input.
Read the dir documentation. It clearly states that the input must be a string.

サインインしてコメントする。

 採用された回答

Guillaume
Guillaume 2016 年 2 月 25 日
The fix is simple, don't pass a cell (an empty one at that) to dir.
It's not clear what you're trying to do. rootpath must be a string that points to a valid path on your machine. Maybe,
rootpath = 'C:\';
but only you know what it should really be.

その他の回答 (0 件)

カテゴリ

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

タグ

質問済み:

2016 年 2 月 25 日

編集済み:

2016 年 2 月 25 日

Community Treasure Hunt

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

Start Hunting!

Translated by