mirror of
https://github.com/rclone/rclone
synced 2024-11-11 09:30:44 +01:00
21 lines
368 B
Go
21 lines
368 B
Go
//+build !plan9,!windows
|
|
|
|
package tree
|
|
|
|
import (
|
|
"os"
|
|
"syscall"
|
|
)
|
|
|
|
func getStat(fi os.FileInfo) (ok bool, inode, device, uid, gid uint64) {
|
|
sys := fi.Sys()
|
|
if sys == nil {
|
|
return false, 0, 0, 0, 0
|
|
}
|
|
stat, ok := sys.(*syscall.Stat_t)
|
|
if !ok {
|
|
return false, 0, 0, 0, 0
|
|
}
|
|
return true, uint64(stat.Ino), uint64(stat.Dev), uint64(stat.Uid), uint64(stat.Gid)
|
|
}
|