Enum RawFileDestinationWriteOption
C#
public enum RawFileDestinationWriteOption
Fields
Append | Specifies that the new data will be appended to the end of existing file. |
CreateAlways | Specifies that a new file should be created to store the raw file information. If the file already exists, the existing file will be overwritten. |
CreateOnce | Specifies that a new file should be created to store the raw file information. If the file already exists, the component should fail. |
TruncateAndAppend | Specifies that the existing file will be be truncated and the the new data will be appended to the end of the truncated file. |