result = Files.exist(name);
Returns true, if "name" is an existing file or directory. If this is not the case, the function returns false.
impure function exist extends Modelica.Icons.Function; input String name "Name of file or directory"; output Boolean result "= true, if file or directory exists"; end exist;