isAbsolute

open fun isAbsolute(path: String): Boolean

isAbsolute()

Determines if a path is absolute.

This method variant accepts a string path and returns a boolean.

Return

true if the path is absolute; false otherwise.

Parameters

path

The path to check.

See also


open fun isAbsolute(path: Path): Boolean

isAbsolute()

Determines if a path is absolute.

This method variant accepts a Path object and returns a boolean.

Return

true if the path is absolute; false otherwise.

Parameters

path

The path to check.

See also


abstract fun isAbsolute(path: Path): Boolean

isAbsolute()

Determines if a path is absolute.

This method variant accepts a NodePath object and returns a boolean.

Return

true if the path is absolute; false otherwise.

Parameters

path

The path to check.

See also