util_absolute_path_p (public)

 util_absolute_path_p path

Defined in packages/acs-tcl/tcl/utilities-procs.tcl

Check whether the path begins with a slash

Parameters:
path (required)

Testcases:
util__absolute_path_p
Source code:
    set firstchar [string index $path 0]
    if {$firstchar ne "/" } {
        return 0
    } else {
        return 1
    }
XQL Not present:
PostgreSQL, Oracle
Generic XQL file:
packages/acs-tcl/tcl/utilities-procs.xql

[ hide source ] | [ make this the default ]
Show another procedure: