Skip to main content

Enum RawFileDestinationWriteOption

Namespace: Varigence.Languages.Biml.Transformation

Assembly: Biml.dll

C#


public enum RawFileDestinationWriteOption

Fields

FieldsDescription
AppendSpecifies that the new data will be appended to the end of existing file.
CreateAlwaysSpecifies that a new file should be created to store the raw file information. If the file already exists, the existing file will be overwritten.
CreateOnceSpecifies that a new file should be created to store the raw file information. If the file already exists, the component should fail.
TruncateAndAppendSpecifies that the existing file will be be truncated and the the new data will be appended to the end of the truncated file.