file.read(start, number)
file.readAll => reads from the current position to the end. Could be used to extract log files
file.readLine
file.close
file.forEachLine => apply some steps with each line of the file as parameter. Useful to load data for example
file.read(start, number)
file.readAll => reads from the current position to the end. Could be used to extract log files
file.readLine
file.close
file.forEachLine => apply some steps with each line of the file as parameter. Useful to load data for example