Hello, Is there the possibility to set the cursor position in a file ?
Example:
--------------------
void main()
{
File myFile = File("myFile.txt");
showFile(myFile);
// set cursor pos to 0
showFile(myFile);
}
void showFile(File f)
{
while (!f.eof())
{
write(f.readln());
}
}
--------------------
Thanks in advance.
