Issue using Delete to remove .txt file
Afficher commentaires plus anciens
Hello everyone. I am currently trying to reomove a .txt file before saving data on it to avoid superposition. I am using Delete as defined in it's help page.
My code is as follows:
delete 'WeightData.txt'
save('WeightData.txt', 'weight', '-ASCII','-append');
However, when I execute it I obtain the following "Warning: File not found or permission denied"
I have also tried to delete using the wildcard
delete '*.txt'
However, the error remains the same and the values keep accumulating in the .txt file.
Can someone please advice me on what to do?
Thanks for reading.
4 commentaires
Mohammad Sami
le 29 Jan 2020
Just use save without '-append'. It should overwrite the old file.
Jaime De La Mota Sanchis
le 29 Jan 2020
Yifan Xu
le 25 Avr 2022
i have the same issue
Walter Roberson
le 25 Avr 2022
delete('WeightData.txt')
Réponses (0)
Catégories
En savoir plus sur Environment and Settings 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!