Rebol Programming/to-local-file

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

USAGE:[edit | edit source]

TO-LOCAL-FILE path 

DESCRIPTION:[edit | edit source]

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

TO-LOCAL-FILE is a native value.

ARGUMENTS[edit | edit source]

  • path -- (Type: file string)

SOURCE CODE[edit | edit source]

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