FileOpenModes

Use these constants to specify different methods of opening files.

  • FileOpenMode_Append –(Value: 0x2) Append to the end of an existing file.
  • FileOpenMode_NoOptions –(Value 0x0) No options.
  • FileOpenMode_Truncate –(Value 0x1) Overwrite an existing file, deleting its contents.
  • FileOpenMode_Uniquify –(Value 0x4) Create a new file it does not exist. If the file already exists, attempt to make the file name unique. The algorithm for creating a unique filename depends on the specific function being invoked.

See Also

CsvFileOutputRecordStream.Open