Golang : Read directory content with os.Open
There are few ways to traverse a directory tree and content in Go. One of them is os.File.Readdir function. In this tutorial, we will see how to read a directory and display its files and size. This example will use the os.Open http://golang.org/pkg/os/#File.Readdir function.
package main
import (
"fmt"
"os"
"path/filepath"
)
func main() {
dirname := "." + string(filepath.Separator)
d, err := os.Open(dirname)
if err != nil {
fmt.Println(err)
os.Exit(1)
}
defer d.Close()
files, err := d.Readdir(-1)
if err != nil {
fmt.Println(err)
os.Exit(1)
}
fmt.Println("Reading "+ dirname)
for _, file := range files {
if file.Mode().IsRegular() {
fmt.Println(file.Name(), file.Size(), "bytes")
}
}
}
Test this code out and see the output of your directory. Hope this tutorial is helpful.
See also : Golang : Read directory content with filepath.Walk()
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
+6.6k Golang : Output or print out JSON stream/encoded data
+16.4k Golang : Delete files by extension
+7.1k Golang : Check if one string(rune) is permutation of another string(rune)
+6.2k Unix/Linux : Use netstat to find out IP addresses served by your website server
+20.6k PHP : Convert(cast) int to double/float
+11.7k Golang : Convert(cast) bigint to string
+13k Golang : Handle or parse date string with Z suffix(RFC3339) example
+5.3k Gogland : Datasource explorer
+23k Golang : Print out struct values in string format
+29.2k Golang : How to create new XML file ?