跳转至内容

Rebol 编程/info?

来自维基教科书,开放世界中的开放书籍
INFO? target 

返回有关文件或 URL 的信息。

INFO? 是一个函数值。

  • 目标 -- (类型:文件 URL)

(特殊属性)

[编辑 | 编辑源代码]
  • 捕捉

源代码

[编辑 | 编辑源代码]
info?: 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
        ]
    ]
]
华夏公益教科书