WOLFRAM SYSTEM MODELER
    readFileRead content of a file and return it in a vector of strings  | 
     | 

SystemModel["Modelica.Utilities.Streams.readFile"]

This information is part of the Modelica Standard Library maintained by the Modelica Association.
stringVector = Streams.readFile(fileName)
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.
| fileName | 
         Type: String Description: Name of the file that shall be read  | 
    
|---|
| stringVector | 
         Type: String[countLines(fileName)] Description: Content of file  | 
    
|---|