How to find specific files using dir?

8 vues (au cours des 30 derniers jours)
Joshua
Joshua le 2 Juil 2013
How can I use the dir command to look for files with certain parts? For example if I wanted all files in a directory that had 'random' in their names, how would I go about selecting only those files?
I know you can use the wildcard to look for certain strings, but is it possible to do it with variables? If name = random, then how would I look for files with 'random' in their names using just name?
Thanks

Réponse acceptée

the cyclist
the cyclist le 2 Juil 2013
name = 'random';
dir(['*',name,'*'])
  1 commentaire
Joshua
Joshua le 2 Juil 2013
Thank you so much!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur File Operations dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by