Rebol 编程/修改了吗?
外观
< Rebol 编程
MODIFIED? target
返回文件或 URL 的最后修改日期。
MODIFIED?是一个函数值。
- 目标 -- (类型: 文件 URL)
- 捕获
modified?: 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] ]