Rebol Programming/clean-path
Appearance
USAGE:
[edit | edit source]CLEAN-PATH target
DESCRIPTION:
[edit | edit source]Cleans-up '.' and '..' in path; returns the cleaned path.
CLEAN-PATH is a function value.
ARGUMENTS
[edit | edit source]- target -- (Type: file url)
SOURCE CODE
[edit | edit source]clean-path: func [ {Cleans-up '.' and '..' in path; returns the cleaned path.} target [file! url!] ][ if url? target [return target] if find [%/ %/. %/..] target [return %/] get-modes target 'full-path ]