Checking existence of Simulink model with full pathname
조회 수: 21 (최근 30일)
이전 댓글 표시
Why is it that I can use the exist command to check if a model exists, but when I provide the fullpath name, it is only considered a file?
>> exist('test.mdl');
ans =
4
>> exist('C:\temp\test.mdl');
ans =
2
댓글 수: 0
채택된 답변
madhan ravi
2020년 6월 10일
https://www.mathworks.com/help/matlab/ref/exist.html#mw_0724f29e-7978-4e62-8c9d-4425e1c7a338 - you may be looking for isfile(...)
댓글 수: 2
madhan ravi
2020년 6월 10일
편집: madhan ravi
2020년 6월 10일
Or you could use cd(...) and then use exist(...)
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!