The source code to open a file in read-only mode is given below. The given program is compiled and executed successfully.
// Golang program to open a file in read-only mode
package main
import "os"
import "fmt"
func main() {
Myfile, err := os.Open("Sample.txt")
if err != nil {
fmt.Println("Unable to open file")
}
len, err := Myfile.WriteString("Hello World")
if len == 0 {
fmt.Printf("File is opened in read-only mode")
} else {
fmt.Printf("%d characters written into file", len)
}
Myfile.Close()
}
Output:
File is opened in read-only mode
Explanation:
In the above program, we declare the package main. The main package is used to tell the Go language compiler that the package must be compiled and produced the executable file. Here, we imported the fmt, os packages then we can use a function related to the fmt and os package.
In the main() function, we opened the "Sample.txt" file in read-only mode using os.Open() function. Then we tried to write content into the file but we are unable to write data into the file because the file is opened in read-only mode. After that, we printed the appropriate message on the console screen.
Program/Source Code:
The source code to open a file in read-only mode is given below. The given program is compiled and executed successfully.
Output:
Explanation:
In the above program, we declare the package main. The main package is used to tell the Go language compiler that the package must be compiled and produced the executable file. Here, we imported the fmt, os packages then we can use a function related to the fmt and os package.
In the main() function, we opened the "Sample.txt" file in read-only mode using os.Open() function. Then we tried to write content into the file but we are unable to write data into the file because the file is opened in read-only mode. After that, we printed the appropriate message on the console screen.
need an explanation for this answer? contact us directly to get an explanation for this answer