Golang *File points to a file or directory ?
In this tutorial, we will learn how to find out if the *File pointer is pointing to a file or directory. The codes are self explanatory
fileordir.go
package main
import (
"fmt"
"os"
"flag"
)
func main() {
flag.Parse()
fileordir := flag.Arg(0) // get first argument
file, err := os.Open(fileordir)
if err != nil {
fmt.Println(err)
return
}
defer file.Close()
fileInfo, err := file.Stat()
if err != nil {
fmt.Println(err)
return
}
switch mode := fileInfo.Mode(); {
case mode.IsDir():
fmt.Println(fileordir + " is a directory")
case mode.IsRegular():
fmt.Println(fileordir + " is a file")
}
}
localhost:~ admin$ go run fileordir.go /Users/admin/for
/Users/admin/for is a file
localhost:~ admin$ go run fileordir.go /Users/admin
/Users/admin is a directory
Hope this can be useful.
See also : Golang : Copy directory - including sub-directories and files
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
+40.5k Golang : Convert to io.ReadSeeker type
+12.1k Golang : convert(cast) string to integer value
+5.2k Golang : Customize scanner.Scanner to treat dash as part of identifier
+14.1k Golang : Check if a file exist or not
+12.7k Golang : Send data to /dev/null a.k.a blackhole with ioutil.Discard
+20.9k Golang : Underscore or snake_case to camel case example
+30.9k Golang : Interpolating or substituting variables in string examples
+10.4k Golang : cannot assign type int to value (type uint8) in range error
+7.7k Golang : Error reading timestamp with GORM or SQL driver
+20.2k Golang : How to get struct tag and use field name to retrieve data?
+8.1k Golang : Multiplexer with net/http and map
+9.5k Golang : Changing a RGBA image number of channels with OpenCV