Module File.Stat

Binds uv_stat_t.

type timespec = {
  1. sec : Signed.Long.t;
  2. nsec : Signed.Long.t;
}
type t = {
  1. dev : Unsigned.UInt64.t;
  2. mode : Mode.numeric;
  3. uid : Unsigned.UInt64.t;
  4. gid : Unsigned.UInt64.t;
  5. rdev : Unsigned.UInt64.t;
  6. ino : Unsigned.UInt64.t;
  7. size : Unsigned.UInt64.t;
  8. blksize : Unsigned.UInt64.t;
  9. blocks : Unsigned.UInt64.t;
  10. flags : Unsigned.UInt64.t;
  11. gen : Unsigned.UInt64.t;
  12. atim : timespec;
  13. mtim : timespec;
  14. ctim : timespec;
  15. birthtim : timespec;
}