Rebol Programming/clean-path
USAGE:
editCLEAN-PATH target
DESCRIPTION:
editCleans-up '.' and '..' in path; returns the cleaned path.
CLEAN-PATH is a function value.
ARGUMENTS
edit- target -- (Type: file url)
SOURCE CODE
editclean-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 ]