"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > How to Avoid `io.EOF` When Reading After Writing to the Same `os.File` in Go?

How to Avoid `io.EOF` When Reading After Writing to the Same `os.File` in Go?

Posted on 2025-02-06
Browse:632

How to Avoid `io.EOF` When Reading After Writing to the Same `os.File` in Go?

Reading and Writing to the Same *os.File in Go

Understanding the Issue

In Go, when writing data to a file using os.File, the file pointer is moved to the end of the file after writing. Subsequently, when attempting to read data from the same file pointer, an immediate io.EOF (End of File) error is encountered because the file pointer is still at the end of the file.

Resolution

To successfully read data from the same file pointer after writing, you must reset the file pointer to the beginning of the file using the Seek method. Here's how you can modify the example code:

// Seek to the beginning of the file before reading
_, err := f.Seek(0, 0)
if err != nil {
    fmt.Println("Error", err)
}

// Read 10 times
r := bufio.NewReader(f)
for i := 0; i 

By adding the Seek method, the file pointer is reset to the beginning of the file before reading, allowing the subsequent read operations to retrieve the written data without causing an io.EOF error.

Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3