how do I delete a file that Matlab wrote

5 次查看(过去 30 天)
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 个评论
dpb
dpb 2016-5-12
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.

请先登录,再进行评论。

回答(1 个)

Image Analyst
Image Analyst 2016-5-12
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.

类别

Help CenterFile Exchange 中查找有关 Get Started with MATLAB 的更多信息

标签

产品

Community Treasure Hunt

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

Start Hunting!

Translated by