2018-02-05 16:05:59 -05:00
|
|
|
package directory // import "github.com/docker/docker/pkg/directory"
|
2015-02-27 13:50:55 -05:00
|
|
|
|
|
|
|
import (
|
2018-03-29 11:34:58 -04:00
|
|
|
"context"
|
2015-02-27 13:50:55 -05:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Size walks a directory tree and returns its total size in bytes.
|
2018-03-29 11:34:58 -04:00
|
|
|
func Size(ctx context.Context, dir string) (size int64, err error) {
|
2016-05-26 22:47:32 -04:00
|
|
|
err = filepath.Walk(dir, func(d string, fileInfo os.FileInfo, err error) error {
|
|
|
|
if err != nil {
|
|
|
|
// if dir does not exist, Size() returns the error.
|
|
|
|
// if dir/x disappeared while walking, Size() ignores dir/x.
|
|
|
|
if os.IsNotExist(err) && d != dir {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2018-03-29 11:34:58 -04:00
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
|
|
|
return ctx.Err()
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
|
2015-02-27 13:50:55 -05:00
|
|
|
// Ignore directory sizes
|
|
|
|
if fileInfo == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
s := fileInfo.Size()
|
|
|
|
if fileInfo.IsDir() || s == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
size += s
|
|
|
|
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|