Delete documents before strarting the routine
12 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
My Matlab script creates three different documents (.txt documents and .xlsx document). Every time I run the script I have to erase those documents manually in order to avoid problems. Does someone know a "script" which will go at the beginning of my routine that will delete such documents before running the analysis? Thanks.
Risposta accettata
Jan
il 13 Mar 2017
Do tis for the wanted files:
if exist(FileName, 'file') == 2
delete(FileName);
end
7 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Construct and Work with Object Arrays in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!