I am using
fid = fopen('fgfg.txt');
to open a file.
Sometimes an error occurs before I manage to close the file. I can’t do anything with that file until I close Matlab.
How can I close a file if an error occurs?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
First of all, you can use the command
Secondly, you can use try-catch blocks and close your file handles
There is a third approach, which is much better. Matlab is now an object-oriented language with garbage collector. You can define a wrapper object that will take care of its lifecycle automatically.
Since it is possible in Matlab to call object methods both in this way:
and in that way:
You can define a class that mimics all of the relevant file command, and encapsulates the lifecycle.
The delete operator is called automatically by Matlab. (There are more functions that you will need to wrap, (fread, fseek, etc..)).
So now you have safe handles that automatically close the file whether you lost scope of it or an error happened.
Use it like this:
And no need to close.
Edit:
I just thought about wrapping
fclose()to do nothing. It might be useful for backward compatibility – for old functions that use file ids.Edit(2): Following @AndrewJanke good comment, I would like to improve the delete method by throwing errors on fclose()