Storage size computing moved off to utils.DirectorySize().
This commit is contained in:
parent
36b0dc7b4d
commit
be37f74317
@ -11,11 +11,9 @@ import (
|
||||
"fmt"
|
||||
"html/template"
|
||||
"io"
|
||||
"io/fs"
|
||||
"net/http"
|
||||
"os"
|
||||
"path"
|
||||
"path/filepath"
|
||||
"time"
|
||||
|
||||
"github.com/eknkc/amber"
|
||||
@ -65,15 +63,10 @@ func (h *UploadHandlers) Index(w http.ResponseWriter, r *http.Request) {
|
||||
var fMaxSize int64 = h.conf.Uploads.Limits.FileSize << 20
|
||||
var storSize int64 = 0
|
||||
|
||||
filepath.Walk(h.conf.Uploads.Directory, func(_ string, info fs.FileInfo, err error) error {
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
storSize += info.Size()
|
||||
|
||||
return nil
|
||||
})
|
||||
storSize, err := utils.DirectorySize(h.conf.Uploads.Directory)
|
||||
if err != nil {
|
||||
h.logErr.Printf("cannot compute storage size: %s", err)
|
||||
}
|
||||
|
||||
_, _, capStr := utils.ConvertFileSize(storCapacity)
|
||||
_, _, usedStr := utils.ConvertFileSize(storSize)
|
||||
|
Loading…
Reference in New Issue
Block a user