Rebol Programming/query

USAGE:

edit
QUERY target /clear 

DESCRIPTION:

edit

Returns information about a file or URL.

QUERY is a native value.

ARGUMENTS:

edit
  • target -- (Type: file url block port object)

REFINEMENTS:

edit
  • /clear -- Clear modified state of target object

SOURCE CODE

edit
query: native[
    "Returns information about a file or URL." 
    target [file! url! block! port! object!] 
    /clear "Clear modified state of target object"
]