How to delete this files..?
54 次查看(过去 30 天)
显示 更早的评论
f=dir(['*.txt'])
f={f.name}
n=find(strcmp(f,'Data.txt'));
f{n}=[]
for k=1:numel(f);
delete([f{k}])
end
When i execute this program, most of the text files are deleted. But some are not and gives notice like as follow :
Warning: File not found or permission denied
Is there any way to overcome this..? Even i want to delete it..
1 个评论
Jan
2013-2-21
You can omit the square braces around the strings:
f=dir('*.txt')
delete(f{k})
This saves processing time.
回答(2 个)
Sean de Wolski
2013-2-21
Also make sure that the files aren't open in MATLAB or another program.
2 个评论
Sean de Wolski
2013-2-25
If the files are opened, i.e. by MATLAB you can either:
- fclose('all');
- Close and restart ML
If they're open in the editor, you can close the Edtior Window, or run this shortcut:
function CloseNoPrompt
%Close all editor windows without prompting
%Active Editor;
hEditor = matlab.desktop.editor.getActive;
%Close all files.
while ~isempty(hEditor);
closeNoPrompt(hEditor);
hEditor = matlab.desktop.editor.getActive;
end
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Environment and Settings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!