aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/osutil/osutil_nonlinux.go
Commit message (Collapse)AuthorAgeFilesLines
* pkg/osutil: fix CreationTimeDmitry Vyukov2026-01-091-2/+8
| | | | | | | | | | We return Ctime from CreationTime. But "C" does not stand for "creation", it stands for "status change" (inode update). It may or may not be the creation time. Use Btime (birth time) for creation time. Fixes #6547
* pkg/osutil: add DiskUsage functionDmitry Vyukov2026-01-091-0/+46
DiskUsage returns total recursive disk usage of the dir (similar to du -s).