Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for atur (0.23 sec)

  1. src/main/java/jcifs/SmbConstants.java

        /**
         * Files is marked to be archived
         */
        static final int ATTR_ARCHIVE = 0x20;
    
        // extended file attribute encoding(others same as above)
        static final int ATTR_COMPRESSED = 0x800;
        static final int ATTR_NORMAL = 0x080;
        static final int ATTR_TEMPORARY = 0x100;
    
        // access mask encoding
        static final int FILE_READ_DATA = 0x00000001; // 1
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbConstants.java

        // file attribute encoding
        static final int ATTR_READONLY   = 0x01;
        static final int ATTR_HIDDEN     = 0x02;
        static final int ATTR_SYSTEM     = 0x04;
        static final int ATTR_VOLUME     = 0x08;
        static final int ATTR_DIRECTORY  = 0x10;
        static final int ATTR_ARCHIVE    = 0x20;
    
        // extended file attribute encoding(others same as above)
        static final int ATTR_COMPRESSED = 0x800;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 8.4K bytes
    - Viewed (0)
Back to top