impure functionreadFile
Read content of a file and return it in a vector of strings
Extends from Modelica.Icons.Function (Icon for functions).
Information
Syntax
stringVector = Streams.readFile(fileName)
Description
Function readFile(..) opens the given file, reads the complete content, closes the file and returns the content as a vector of strings. Lines are separated by LF or CR-LF; the returned strings do not contain the line separators. Note, a fileName can be defined as URI by using the helper function loadResource.
Inputs
| Type | Name | Default | Description |
|---|---|---|---|
| String | fileName | Name of the file that shall be read |
Outputs
| Type | Name | Default | Description |
|---|---|---|---|
| String[countLines(fileName)] | stringVector | Content of file |