join_paths

Declaration

join_paths (path1, path2: STRING): STRING

Description

Joins the file system paths together using the rules and separators for the platform.

See also

get_full_path
Location manager

Example

script show_file is
  message ('your profile file is ' . 
    join_paths (get_full_path ('profiles'), user_name . '.pfl'), Message_info)
end