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

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

1 commentaire

Stephen23
Stephen23 le 25 Fév 2016
Modifié(e) : Stephen23 le 25 Fév 2016
Answer: Don't use a cell array for the input.
Read the dir documentation. It clearly states that the input must be a string.

Connectez-vous pour commenter.

 Réponse acceptée

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.

Plus de réponses (0)

Catégories

En savoir plus sur File Operations dans Centre d'aide et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by