Golang : Test file read write permission example
Problem :
You need to test if a file has the correct write or read permission before performing write or read operation. How to do that?
Solution :
Use os.OpenFile()
function and check the error with os.IsPermission() to see if a file has permission denied error.
For example :
To test if a file has write permission : (do not run this program as root or super user)
package main
import (
"fmt"
"os"
)
func main() {
fileName := "file.txt"
file, err := os.OpenFile(fileName, os.O_WRONLY, 0666)
if err != nil {
if os.IsPermission(err) {
fmt.Println("Unable to write to ", fileName)
fmt.Println(err)
os.Exit(1)
}
}
file.Close()
}
To test if a file has read permission : (do not run this program as root or super user)
package main
import (
"fmt"
"os"
)
func main() {
fileName := "file.txt"
file, err = os.OpenFile(fileName, os.O_RDONLY, 0666)
if err != nil {
if os.IsPermission(err) {
fmt.Println("Unable to read from ", fileName)
fmt.Println(err)
os.Exit(1)
}
}
file.Close()
}
References :
https://golang.org/pkg/os/#IsPermission
https://www.socketloop.com/tutorials/golang-check-if-a-file-exist-or-not
See also : Golang : Get file permission
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+7k Golang : Use modern ciphers only in secure connection
+13.8k Golang: Pad right or print ending(suffix) zero or spaces in fmt.Printf example
+9.2k Golang : Web(Javascript) to server-side websocket example
+9.6k Golang : List available AWS regions
+8.3k Golang : How to check variable or object type during runtime?
+9.1k Golang : Temperatures conversion example
+20.3k Golang : Pipe output from one os.Exec(shell command) to another command
+11.9k Golang : Decompress zlib file example
+11.4k Golang : Display a text file line by line with line number example
+6.7k Android Studio : Hello World example
+16.9k Golang : Covert map/slice/array to JSON or XML format
+5.5k Javascript : How to refresh page with JQuery ?