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
+14.3k Golang : Reset buffer example
+9.4k Golang : Detect number of active displays and the display's resolution
+5.9k Golang : Measure execution time for a function
+6.3k Golang : Spell checking with ispell example
+9.6k Golang : ffmpeg with os/exec.Command() returns non-zero status
+12.4k Android Studio : Highlight ImageButton when pressed on example
+6.6k Get Facebook friends working in same company
+14.3k Golang : Convert(cast) int to float example
+7.7k Golang Hello World Example
+22.2k Golang : How to read JPG(JPEG), GIF and PNG files ?
+29k Golang : Save map/struct to JSON or XML file
+13.4k Golang : Tutorial on loading GOB and PEM files