跳转到内容

Rebol 编程/size?

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

返回文件或 URL 内容的大小。

SIZE? 是一个函数值。

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

(特殊属性)

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

源代码

[编辑 | 编辑源代码]
size?: func [
    "Returns the size of a file or URL's contents." 
    [catch] 
    target [file! url!] 
    /local info
][
    info: throw-on-error [info? target] 
    either none? info [none] [info/size]
]
华夏公益教科书