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
+22.1k Golang : Convert Unix timestamp to UTC timestamp
+8.6k Golang : Go as a script or running go with shebang/hashbang style
+15.5k Golang : Generate universally unique identifier(UUID) example
+9.4k Golang : Resumable upload to Google Drive(RESTful) example
+14.2k Golang : Rename directory
+6.3k Golang : Experimental emojis or emoticons icons programming language
+6.8k Golang : How to fix html/template : "somefile" is undefined error?
+4.9k Python : Convert(cast) string to bytes example
+4.4k PHP : Extract part of a string starting from the middle
+18.8k Golang : Check if directory exist and create if does not exist
+7.6k Golang : Grayscale Image
+19.2k Golang : Archive directory with tar and gzip