Rebol Programming/dir?
USAGE:
editDIR? target
DESCRIPTION:
editReturns TRUE if a file or URL is a directory.
DIR? is a function value.
ARGUMENTS
edit- target -- (Type: file url)
(SPECIAL ATTRIBUTES)
edit- catch
SOURCE CODE
editdir?: func [ "Returns TRUE if a file or URL is a directory." [catch] target [file! url!] /local info ][ info: throw-on-error [info? target] either none? info [false] [info/type = 'directory] ]