Checking existence of Simulink model with full pathname
21 views (last 30 days)
Show older comments
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 Comments
Accepted Answer
madhan ravi
on 10 Jun 2020
https://www.mathworks.com/help/matlab/ref/exist.html#mw_0724f29e-7978-4e62-8c9d-4425e1c7a338 - you may be looking for isfile(...)
2 Comments
madhan ravi
on 10 Jun 2020
Edited: madhan ravi
on 10 Jun 2020
Or you could use cd(...) and then use exist(...)
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!