public function sys_get_path_separator() result(sep)
Get platform-specific path separator
Arguments
None
Return Value
character(len=1)
Source Code
function sys_get_path_separator()result(sep)character(len=1)::sepif(get_os_type()==OS_WINDOWS)thensep='\' else sep = '/'end if end function sys_get_path_separator