Effacer les filtres
Effacer les filtres

dir method stops at 1000 files sometimes

2 vues (au cours des 30 derniers jours)
michael adams
michael adams le 14 Déc 2023
Commenté : Walter Roberson le 14 Déc 2023
I have been struggling with the dir function lately.
the dir method often stops enumerating the directory at 1000 files. If I query enough times, I will finally get the correct count. see below (copied from matlab command line) where I have called dir two times in a row and get drastically different answers. nothing changed between calls....I called one right after the other. Has anyone had this issue or found a workaround?
This is a network drive I'm reading so that may be part of the issue.
>> sublist = dir([imdir_win '\*.tif*'])
sublist =
1000×1 struct array with fields:
>> sublist = dir([imdir_win '\*.tif*'])
sublist =
7066×1 struct array with fields:
  2 commentaires
Image Analyst
Image Analyst le 14 Déc 2023
Modifié(e) : Image Analyst le 14 Déc 2023
I don't know. Weird. I don't think it should make a difference but what if you use fullfile?
sublist = dir(fullfile(imdir_win, '*.tif*'))
Walter Roberson
Walter Roberson le 14 Déc 2023
Unfortunately the fact that it is a network drive has everything to do with it.

Connectez-vous pour commenter.

Réponses (0)

Catégories

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

Produits


Version

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by