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 or folders. |
---|---|
nType | (Long) Value of the parameter.
0 - Returns a value of the String type of the entire file content
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 at the end, 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));
}