I want to know file's current read offset after open a file, but I can not found related API.
f, err := os.Open("/tmp/xxxx")
if err != nil{
panic(err)
}
... // some read operation
// how can I get f's current read offset??
--
You received this message because you are subscribed to the Google Groups
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.
