필터 지우기
필터 지우기

How do i remove a path with sub folder similar to how we add folder with all sub folder? Matlab takes very long to initialize.

조회 수: 164 (최근 30일)
I am trying to run matlab and I recently added a lot of paths for my work. As of now Matlab takes too long to initialize. I am trying to remove all the paths and we have add path with subfolder but not an option to remove path with subfolders. Is there any way I can remove it? I have tried rmdir, rmpath (C:\..) but nothing seems to remove subfolder paths. Thank you for your time.
Regards Raj

채택된 답변

Image Analyst
Image Analyst 2018년 6월 7일
Try genpath
rmpath(genpath(topLevelFolder));
  댓글 수: 2
OCDER
OCDER 2018년 6월 7일
And just in case there are subdir not in the matlab path, which generates warning messages, suppress warnings:
warning('off','all');
rmpath(genpath(topLevelFolder));
warning('on','all');

댓글을 달려면 로그인하십시오.

추가 답변 (2개)

Jan
Jan 2023년 2월 9일
Go to Home --> Set Path --> Remove folders in the window or press default as suggested by Kishan.

Kishan Chowhan
Kishan Chowhan 2020년 3월 21일
Just press "default"

카테고리

Help CenterFile Exchange에서 Search Path에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by