Cannot remove folder from path. Why?
4 次查看(过去 30 天)
显示 更早的评论
There is a folder in my path, which cannot be removed. The folder is not a default MATLAB toolbox, it was added by me previously. What to do?
1 个评论
回答(1 个)
Sudhanshu Bhatt
2015-8-4
Hello Mr M,
MATLAB function "rmpath" is used to remove a particular folder from the search path.
For Example:
Path of the folder to remove: C:\Unwanted\Folder
On MATLAB Command line:
>> rmpath('C:\Unwanted\Folder');
This will remove the folder from your path. To check if the folder has been removed you can use "path" on MATLAB command line, which will give all the folders in your path. For Example:
>> path
Note: If you want to restore your path to default, "restoredefaultpath" command an be used, which will reset path to factory installed state i.e. when MATLAB was installed..
More information on rmpath, path and restoredefaultpath can be found in the documentation link below:
Hope this helps.
Thanks
Sudhanshu Bhatt
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Search Path 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!