Creating a diary that is not appended to an existing one.
Afficher commentaires plus anciens
According to Matlab documentation when turning on the diary it appends the commands to the existing diary of the same name. Is there a way not to append, that is to start the diary file afresh? Thanks Tomy
Réponse acceptée
Plus de réponses (2)
WAT
le 30 Sep 2015
if (exist(filename))
delete(filename);
end
4 commentaires
Jan
le 30 Sep 2015
Be careful with the exist command. It accepts existing variables, Java classes and so on. Better:
if exist(FileName, 'file')
But even this accepts folders with this name.
WAT
le 30 Sep 2015
so I guess
if (exist(Filename, 'file') == 2))
to be even safer then?
Tomy Duby
le 5 Oct 2015
Walter Roberson
le 5 Oct 2015
I would speculate that at the time you delete() that the current directory is no longer the same directory you created the diary in. Remember that it is always safer to fully-qualify file names.
Walter Roberson
le 30 Sep 2015
0 votes
3 commentaires
Tomy Duby
le 30 Sep 2015
Walter Roberson
le 30 Sep 2015
Xiaodi
le 3 Sep 2017
I guess, before you delete mydiary.out file, you must
diary off
to close the diary process and then maybe you can delete this mydiary.out file, which is created by
diary('mydiary.out')
Catégories
En savoir plus sur Share and Distribute Software dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!