Delete the folder existing in the matlab path
Afficher commentaires plus anciens
How can i delete the folder and its subfolder and its files in the matlab path ??
Réponses (2)
rmdir(folderName,'s')
2 commentaires
Gopalakrishnan venkatesan
le 22 Sep 2015
Modifié(e) : Gopalakrishnan venkatesan
le 22 Sep 2015
Stephen23
le 22 Sep 2015
Call dir D:\Bala and tell us exactly what is displayed.
Guillaume
le 22 Sep 2015
To remove a folder from matlab's search path, use rmpath. This does not delete the folder from disk if it exists. If you've also added subfolders to the path, you need to remove each one of these individually. Alternatively, use
pathtool
to add and remove folders through a UI.
Catégories
En savoir plus sur File Operations dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!