Rebol Programming/to-rebol-file

From Wikibooks, open books for an open world
Jump to navigation Jump to search

USAGE:[edit | edit source]

TO-REBOL-FILE path 

DESCRIPTION:[edit | edit source]

Converts a local system file path to a REBOL file path.

TO-REBOL-FILE is a native value.

ARGUMENTS[edit | edit source]

  • path -- (Type: file string)

SOURCE CODE[edit | edit source]

to-rebol-file: native[
  {Converts a local system file path to a REBOL file path.} 
  path [file! string!]
]