Rebol Programming/info?
USAGE:
editINFO? target
DESCRIPTION:
editReturns information about a file or url.
INFO? is a function value.
ARGUMENTS:
edit- target -- (Type: file url)
(SPECIAL ATTRIBUTES)
edit- catch
SOURCE CODE
editinfo?: func [ "Returns information about a file or url." [catch] target [file! url!] ][ throw-on-error [ target: make port! target query target ] either none? target/status [ none ] [ make object! [ size: target/size date: target/date type: target/status ] ] ]