I believe you are misusing the syscall.Statfs
function: it returns file system statistics, not the size of individual directories or files. So, what you are seeing as output is not the size of individual directories, but the overall disk usage for the filesystem that these directories reside on.
If you do not want to use filepath.Walk
(which is actually a good way to calculate the directory size by recursively going through all the files), you can write your own recursive function.
package main
import (
"os"
"log"
"fmt"
)
const (
B = 1
KB = 1024 * B
MB = 1024 * KB
GB = 1024 * MB
)
func DirSize(path string) (int64, error) {
var size int64
entries, err := os.ReadDir(path)
if err != nil {
return size, err
}
for _, entry := range entries {
if entry.IsDir() {
subDirSize, err := DirSize(path + "/" + entry.Name())
if err != nil {
log.Printf("failed to calculate size of directory %s: %v\n", entry.Name(), err)
continue
}
size += subDirSize
} else {
fileInfo, err := entry.Info()
if err != nil {
log.Printf("failed to get info of file %s: %v\n", entry.Name(), err)
continue
}
size += fileInfo.Size()
}
}
return size, nil
}
func main() {
dirs := []string{"./containers", "./testfolder", "./workspace"}
for _, dir := range dirs {
size, err := DirSize(dir)
if err != nil {
log.Printf("failed to calculate size of directory %s: %v\n", dir, err)
continue
}
fmt.Printf("%s --> %.2f GB\n", dir, float64(size)/float64(GB))
}
}
That would go through each directory and file under the given directory and sum up the sizes.
If the entry is a directory, it will recursively calculate the size of the directory.
Although... this code will not handle symbolic links or other special files.
The other option is for the DirSize
function uses filepath.Walk
to traverse all files under the specified directory, including subdirectories.
The filepath.Walk
function takes two arguments: the root directory and a function that will be called for each file or directory in the tree rooted at the root.
Here, for each file it encounters, it adds the size of the file to the total size (ignoring directories).
Since filepath.Walk
automatically handles recursive traversal for you, it is generally simpler and more straightforward than manually writing the recursive function.
(playground)
package main
import (
"os"
"log"
"fmt"
"path/filepath"
)
const (
B = 1
KB = 1024 * B
MB = 1024 * KB
GB = 1024 * MB
)
func DirSize(path string) (int64, error) {
var size int64
err := filepath.Walk(path, func(_ string, info os.FileInfo, err error) error {
if err != nil {
return err
}
if !info.IsDir() {
size += info.Size()
}
return err
})
return size, err
}
func main() {
dirs := []string{"./containers", "./testfolder", "./workspace"}
for _, dir := range dirs {
size, err := DirSize(dir)
if err != nil {
log.Printf("failed to calculate size of directory %s: %v\n", dir, err)
continue
}
fmt.Printf("%s --> %.2f GB\n", dir, float64(size)/float64(GB))
}
}