Lucee Function Reference

fileopen()

Opens an file to read, write, or append.

Beispiel

fileopen(string file,[string mode,[string charset,[boolean seekable]]]):any

Argumente

Die Argumente für diese Funktion sind fest vorgegeben. Ausser den nachfolgenden Argumenten dürfen keine weiteren verwendet werden.
Name Typ Required Default Value Beschreibung
file string  Yes   a file path  
mode string  No read Action to perform on the file, including the following:
  • read
  • readBinary
  • write
  • append

    If you do not specify the mode, Lucee opens the file in read mode.  
  • charset string  No   The character set of the file.  
    seekable boolean  No   can be used for function fileseek