| |
fileio_fopen
Format:
fileio_fopen ( filename, mode ) |
Purpose:
Open a file.
The parameters filename and mode must be strings.
The mode arguments are the same as in C
(e.g. "r" for read access).
Return Values:
Upon successful completion, fileio_fopen() returns a file (File type).
Otherwise, an error code (Integer type) is returned.
Configuration:
This function is only allowed, if secure mode is off.
Example:
// opens a file named "/var/www/heitml2.1/try/index.hei" and prints its content
f = fileio_fopen("/var/www/heitml2.1/try/index.hei","r");
if isinteger(f);
? fileio_strerror (f);
else
s = fileio_fread (f, 100000);
? s;
fileio_fclose (f);
/if;
|
See Also:
fileio_fclose(), fileio_fread(),
fileio_fwrite(), fileio_feof(),
fileio_strerror().
This page was dynamically generated by the
web application development tool RADpage
of H.E.I.
H.E.I. provides support, tools, and services like
Webdesign in Mannheimm,
the HTML/CSS 3D WebGL Animation Library taccgl,
3D Webdesign, and
3D Product Configurator
(3D Produkt Konfigurator in German).
Selected blog articles :
3D Objects on HTML pages,
CSS Transition Visibility, and
CSS Transition Display.
© 1996-2025 H.E.I. All Rights Reserved.
|