DataFlow.WriteDelimitedFile(String, Char, String, String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Write out the data in the Dataflow in a delimited text format. The output is specified as a directory which will contain multiple files, one per partition processed in the Dataflow.
public Microsoft.DataPrep.Common.DataFlow WriteDelimitedFile(string filePath, char separator = ',', string na = "NA", string error = "ERROR");
member this.WriteDelimitedFile : string * char * string * string -> Microsoft.DataPrep.Common.DataFlow
Public Function WriteDelimitedFile (filePath As String, Optional separator As Char = ',', Optional na As String = "NA", Optional error As String = "ERROR") As DataFlow
Parameters
- filePath
- String
The path to a directory in which to store the output files.
- separator
- Char
The separator to use.
- na
- String
String to use for null values.
- error
- String
String to use for error values.
Returns
The modified Dataflow. Every execution of the returned Dataflow will perform the write again.