Golang : Check if a directory exist or not
In this short tutorial, we will learn how to check if a parameter passed as argument is directory or not. It is pretty straight forward by using the os.Stat.IsDir() function
checkdir.go
package main
import (
"os"
"flag"
"fmt"
)
func main() {
flag.Parse() // get the arguments from command line
source_dir := flag.Arg(0) // get the source directory from 1st argument
fmt.Println("Source :" + source_dir)
// check if the source dir exist
src, err := os.Stat(source_dir)
if err != nil {
panic(err)
}
// check if the source is indeed a directory or not
if !src.IsDir() {
fmt.Println("Source is not a directory")
os.Exit(1)
}
}
Hope this will be helpful.
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
+4.9k Golang : Display packages names during compilation
+22.1k Golang : Read directory content with filepath.Walk()
+16.6k Golang : Get own process identifier
+21.7k Golang : Join arrays or slices example
+8.5k Golang : Find duplicate files with filepath.Walk
+35.9k Golang : How to split or chunking a file to smaller pieces?
+14.9k Golang : Save(pipe) HTTP response into a file
+7.9k How to show different content from website server when AdBlock is detected?
+5k Golang : Issue HTTP commands to server and port example
+11.4k Golang : Concurrency and goroutine example
+12.4k Golang : Sort and reverse sort a slice of bytes
+5.6k Javascript : How to replace HTML inside <div>?