Checking existence of Simulink model with full pathname
15 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Monika Jaskolka
am 10 Jun. 2020
Bearbeitet: madhan ravi
am 10 Jun. 2020
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 Kommentare
Akzeptierte Antwort
madhan ravi
am 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 Kommentare
madhan ravi
am 10 Jun. 2020
Bearbeitet: madhan ravi
am 10 Jun. 2020
Or you could use cd(...) and then use exist(...)
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!