is_file

Declaration

is_file (location, name: STRING): BOOLEAN

Description

Looks for the file name inside the folder pointed to by location. Locations are created at startup in the project file and are maintained by the location manager. Use is_location to determine whether the location is valid.

See also

is_location
Location manager

Example

script check_for_logo_movie is
  Result   :=   is_file ('movies', 'logo.mov')
end