Delete documents before strarting the routine

12 visualizzazioni (ultimi 30 giorni)
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
Jan il 13 Mar 2017
Do tis for the wanted files:
if exist(FileName, 'file') == 2
delete(FileName);
end
  7 Commenti
Javier Martinez
Javier Martinez il 16 Mar 2017
It worked ! Nice thank you very much.

Accedi per commentare.

Più risposte (0)

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!

Translated by