how do I delete a file that Matlab wrote

7 Ansichten (letzte 30 Tage)
Wis
Wis am 12 Mai 2016
Beantwortet: Image Analyst am 12 Mai 2016
If I save an RF circuit (RF Toolbox) with the 'write' method, I cannot subsequently delete that file in a script during the same Matlab session. I get "Warning: File not found or permission denied".
With no explicit close for the RF Toolbox output files, it seems I'm stuck. If I exit Matlab, the file becomes accessible (unlocked).
  1 Kommentar
dpb
dpb am 12 Mai 2016
Don't have the toolbox, but from the description if that is really so, seems like an oversight that I'd say rises to the level of "bug".
Contact Support at www.mathworks.com and file bug report/request workaround if they can find one.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Image Analyst
Image Analyst am 12 Mai 2016
You probably forgot to close it. Use fclose(). Or fclose all.
I don't know what write method you're talking about. This is all I have
write
Write data to remote host over TCP/IP interface
Does not sound like that's what you're referring to. If you're using xlswrite, MATLAB 22015b and later keeps Excel open to your file, unlike prior versions, so trying to delete the workbook may not work since you can't delete a file that some process has open and locked. Some programs, perhaps Excel, will place a lock on the file, and some programs, like Notepad, don't. Perhaps fclose('all') may fix it - I don't know. If not, you'll have to use actxGetRunningServer() to get the handle to Excel then quit Excel
hExcel = actxGetRunningServer('Excel');
hExcel.Quit;
or something like that.

Kategorien

Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by