sFile | (String) The file name with the path. If a full path is not entered, then it is completed relative to the application folder. It is recommended to use the PROMOTIC path syntax - see PROMOTIC path to files and folders. |
---|---|
nType | (Long) Value of the parameter. 0 - Returns String of the content of the entire file 1 - Returns the 1-dimensional array of the String type where each item of the array contains just one line of the file. 2 - Returns a value of the String type of the first line of the file. 3 - Returns a value of the String type of the last line of the file. Caution: If the text file contains the "new line" character, then this option returns an empty string corresponding to the last empty row. |
var data = Pm.FileTextRead("#app:file.txt", 1);
if (Pm.IsValid(data))
Pm.Debug(data.GetItem(0));