Solution
After a write operation, the file mark will be placed after the data that was just written, therefore, when you read the file from the current position you might get an empty value, or an End of Line error. To get the last value written, you can use the
offset input terminal in the
Set File Position function to adjust the file mark.
The offset can be a negative number, using this along with the
from input terminal, you can move the file mark to the last position it was before the data was written, after this you will be able to read the last values written to the file.