textscan loop works on windows but not on macOS - why?
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Ekaterina Avershina
le 1 Déc 2017
Commenté : Walter Roberson
le 16 Août 2022
Hi all,
I have a list of files that i need to open, schematically the script looks like:
for i=1:length(files)
x=fopen(files{i});
data=textscan(x, -all-the-formatspecs-);
fclose(x)
end
The script works perfectly fine on windows and goes through all the files in the list. When the script is run on macOS, though, an 'invalid file identifier' error message pops up after it's gone through the loop couple of times. Also, there is no consistency on -when- it crashes. sometimes after it's gone through 10 files, sometimes - through 2... If i try to open the file it crashed on, individually using same commands - it works... What can be the problem?
5 commentaires
Réponse acceptée
Guillaume
le 1 Déc 2017
Modifié(e) : Guillaume
le 1 Déc 2017
To find out why fopen failed to open a file, change your script to:
for i=1:length(files)
[fid, errmsg]=fopen(files{i});
assert(fid > 0, 'Failed to open "%s" because %s', files{i}, errmsg);
data = textscan(fid, -all-the-formatspecs-);
fclose(fid)
end
This should give you a better description of the problem.
0 commentaires
Plus de réponses (3)
Ekaterina Avershina
le 1 Déc 2017
Modifié(e) : Ekaterina Avershina
le 1 Déc 2017
3 commentaires
Walter Roberson
le 16 Août 2022
dirname is a character vector that is being provided by the user; @Ekaterina Avershina coded it at https://www.mathworks.com/matlabcentral/answers/370404-textscan-loop-works-on-windows-but-not-on-macos-why#answer_294131
Ekaterina Avershina
le 1 Déc 2017
1 commentaire
Stephen23
le 1 Déc 2017
Using ls and cellstr to get filenames
files=cellstr(ls(['./' dirname]));
is quite unusual. Standard MATLAB practice is to use dir, and loop over the structure that it returns: this gives the same behavior on all OS's. See the MATLAB documentation:
or FAQs:
Voir également
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!