normalize

open fun normalize(path: String): String

normalize()

Normalizes a path.

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

Return

The normalized path.

Parameters

path

The path to normalize.

See also


open fun normalize(path: Path): String

normalize()

Normalizes a path.

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

Return

The normalized path as string.

Parameters

path

The path to normalize.

See also


abstract fun normalize(path: Path): String

normalize()

Normalizes a path.

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

Return

The normalized path as a Node path.

Parameters

path

The path to normalize.

See also