Golang : Check to see if *File is a file or directory
Sometimes, we need to write codes that is robust and flexible enough to handle different situation. For example, if a program is going to open up a directory or file. In this simple tutorial, we will learn how to handle the situation when opening up a file or directory with os.Open()
function. We will use the FileInfo.Mode()
function to determine if the object that we opened is a file or directory.
package main
import (
"os"
"fmt"
)
func main() {
object := "./FileDir" // this could be file or directory
fdir, err := os.Open(object)
if err != nil {
fmt.Println(err)
return
}
defer fdir.Close()
finfo, err := fdir.Stat()
if err != nil {
fmt.Println(err)
return
}
switch mode := finfo.Mode(); {
case mode.IsDir():
fmt.Println("object is a directory")
case mode.IsRegular():
fmt.Println("object is a file")
}
}
Hope this tutorial can be useful to you. Remember to check out the SEE ALSO below.
Reference :
See also : Golang : Read directory content with os.Open
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
+41.4k Golang : How do I convert int to uint8?
+79k Golang : How to return HTTP status code?
+7k Golang : Use modern ciphers only in secure connection
+7.1k Golang : Null and nil value
+20k Swift : Convert (cast) Int to int32 or Uint32
+8.4k Linux/Unix : fatal: the Postfix mail system is already running
+5.1k JavaScript/JQuery : Redirect page examples
+8.1k Golang : Auto-generate reply email with text/template package
+18.7k Golang : How to make function callback or pass value from function as parameter?
+10k Golang : Find and replace data in all files recursively
+15.7k Golang : Read a file line by line
+6.5k Golang : Skip or discard items of non-interest when iterating example