Rebol Programming/modified?
USAGE:
editMODIFIED? target
DESCRIPTION:
editReturns the last modified date of a file or URL.
MODIFIED? is a function value.
ARGUMENTS:
edit- target -- (Type: file url)
(SPECIAL ATTRIBUTES)
edit- catch
SOURCE CODE
editmodified?: func [ "Returns the last modified date of a file or URL." [catch] target [file! url!] /local info ][ info: throw-on-error [info? target] either none? info [none] [info/date] ]