Class Stat

    • Field Summary

      Fields 
      Modifier and Type Field Description
      static boolean HAVE_SYS_STAT_H  
      static int S_IRGRP
      POSIX: Read permission, group; Numeric value: 040.
      static int S_IROTH
      POSIX: Read permission, others; Numeric value: 04.
      static int S_IRUSR
      POSIX: Read permission, owner; Numeric value: 0400.
      static int S_IRWXG
      POSIX: Read, write, execute/search by group; Numeric value: 070.
      static int S_IRWXO
      POSIX: Read, write, execute/search by others; Numeric value: 07.
      static int S_IRWXU
      POSIX: Read, write, execute/search by owner; Numeric value: 0700.
      static int S_ISGID
      POSIX: Set-group-ID on execution; Numeric value: 02000.
      static int S_ISUID
      POSIX: Set-user-ID on execution; Numeric value: 04000.
      static int S_ISVTX
      POSIX.XSI: On directories, restricted deletion flag; Numeric value: 01000.
      static int S_IWGRP
      POSIX: Write permission, group; Numeric value: 020.
      static int S_IWOTH
      POSIX: Write permission, others; Numeric value: 02.
      static int S_IWUSR
      POSIX: Write permission, owner; Numeric value: 0200.
      static int S_IXGRP
      POSIX: Execute/search permission, group; Numeric value: 010.
      static int S_IXOTH
      POSIX: Execute/search permission, others; Numeric value: 01.
      static int S_IXUSR
      POSIX: Execute/search permission, owner; Numeric value: 0100.
    • Field Detail

      • HAVE_SYS_STAT_H

        public static final boolean HAVE_SYS_STAT_H
      • S_IRGRP

        @Define
        public static final int S_IRGRP
        POSIX: Read permission, group; Numeric value: 040.
      • S_IROTH

        @Define
        public static final int S_IROTH
        POSIX: Read permission, others; Numeric value: 04.
      • S_IRUSR

        @Define
        public static final int S_IRUSR
        POSIX: Read permission, owner; Numeric value: 0400.
      • S_IRWXG

        @Define
        public static final int S_IRWXG
        POSIX: Read, write, execute/search by group; Numeric value: 070.
      • S_IRWXO

        @Define
        public static final int S_IRWXO
        POSIX: Read, write, execute/search by others; Numeric value: 07.
      • S_IRWXU

        @Define
        public static final int S_IRWXU
        POSIX: Read, write, execute/search by owner; Numeric value: 0700.
      • S_ISGID

        @Define
        public static final int S_ISGID
        POSIX: Set-group-ID on execution; Numeric value: 02000.
      • S_ISUID

        @Define
        public static final int S_ISUID
        POSIX: Set-user-ID on execution; Numeric value: 04000.
      • S_ISVTX

        @Define
        public static final int S_ISVTX
        POSIX.XSI: On directories, restricted deletion flag; Numeric value: 01000.
      • S_IWGRP

        @Define
        public static final int S_IWGRP
        POSIX: Write permission, group; Numeric value: 020.
      • S_IWOTH

        @Define
        public static final int S_IWOTH
        POSIX: Write permission, others; Numeric value: 02.
      • S_IWUSR

        @Define
        public static final int S_IWUSR
        POSIX: Write permission, owner; Numeric value: 0200.
      • S_IXGRP

        @Define
        public static final int S_IXGRP
        POSIX: Execute/search permission, group; Numeric value: 010.
      • S_IXOTH

        @Define
        public static final int S_IXOTH
        POSIX: Execute/search permission, others; Numeric value: 01.
      • S_IXUSR

        @Define
        public static final int S_IXUSR
        POSIX: Execute/search permission, owner; Numeric value: 0100.