|
|
Topic complex |
Stream functions |
Function |
f_open() |
Short |
Opens an existing stream |
Syntax |
f_open(filename : string[,mode : integer]) : integer |
Parameter |
filename : Complete path to the stream (file)
mode : 0 = Read Only |
Return |
0 : Stream could not be opened (Error code of the operating system in F_ERROR)
otherwise Handle, which references the opened stream for proximate operations on it. |
See also: |
|
Description |
f_open opens an existing stream on a physical device (no socket, no ramtext) for reading and writing The function f_open() is equivalent to reset() for the text files.
|
Write a comment:
|
|
|