Seq
Namespace: FSharpAux.IO
Parent Module: SeqIO
Static members
Static member | Description |
Seq.fromFile(filePath)
Signature: filePath:string -> seq<string>
|
Reads a file line by line
|
Seq.fromFileWithCsvSchema(...)
Signature: (filePath:string * separator:char * firstLineHasHeader:bool * skipLines:int option * skipLinesBeforeHeader:int option * schemaMode:SchemaModes option) -> seq<'schema>
Type parameters: 'schema
|
Reads a file following a given type record schema
Uses SchemaReader.Csv.CsvReader<'schema>()
|
Seq.fromFileWithSep separator filePath
Signature: separator:char -> filePath:string -> seq<string []>
|
This function builds an IEnumerable object that enumerates the file
and splits lines of the given file on-demand
|
Seq.toCSV separator header data
Signature: separator:string -> header:bool -> data:seq<'a> -> seq<string>
Type parameters: 'a
|
Convertes a generic sequence to a sequence of seperated string
use write afterwards to save to file
|
Seq.write path data
Signature: path:string -> data:seq<'a> -> unit
Type parameters: 'a
|
Writes a sequence to file path
|
Seq.writeOrAppend path data
Signature: path:string -> data:seq<'a> -> unit
Type parameters: 'a
|
Writes a sequence to file path (creates a new file or appends file)
|