How to check a file existing in MatLab? - isfile -- MatLab

 How to check a file existing in MatLab? - isfile -- MatLab


How to check a file existing in MatLab?
[Ans]
isfile

[syntax]
result=isfile(<fileName>)

[description]
It will return true when <fileName> exists in the current folder or it is located on the specified path.
Otherwise, it will return false.

more details on:

Comments

Popular posts from this blog

How to join a file path with multiple char vector or string in MatLab? - fullfile -- MatLab