Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getOwnerGroup (1.3 sec)

  1. src/main/java/jcifs/smb/SmbFile.java

                }
                return ownerUser;
            }
        }
    
        @Override
        public SID getOwnerGroup() throws IOException {
            return getOwnerGroup(true);
        }
    
        @Override
        public SID getOwnerGroup(final boolean resolve) throws IOException {
            try (SmbTreeHandleImpl th = ensureTreeConnected()) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbFile.java

        }
    
        /**
         * Returns the owner group SID for this file
         *
         * @return the owner group SID
         * @throws IOException if an I/O error occurs
         */
        public SID getOwnerGroup() throws IOException {
    
            final int f = open0(O_RDONLY, READ_CONTROL, 0, isDirectory() ? 1 : 0);
    
            /*
             * NtTrans Query Security Desc Request / Response
             */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
Back to top