Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for children (0.17 sec)

  1. src/test/java/jcifs/tests/EnumTest.java

                        cf.close();
                    }
    
                    int n = 0;
                    try ( CloseableIterator<SmbResource> children = f.children("*.txt") ) {
                        while ( children.hasNext() ) {
                            try ( SmbResource r = children.next() ) {
                                assertTrue(r.exists());
                                n++;
                            }
                        }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:09:03 GMT 2023
    - 25.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/ACE.java

         * not be set within all security descriptors even though the ACE was in
         * face inherited. If an inherited ACE is added to a parent the Windows
         * ACL editor will rebuild all children ACEs and set this flag accordingly.
         */
        public boolean isInherited() {
            return (flags & FLAGS_INHERITED) != 0;
        }
        /**
         * Returns the flags for this ACE. The </tt>isInherited()</tt>
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 7.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/SmbResource.java

         */
        @Override
        void close ();
    
    
        /**
         * Fetch all children
         * 
         * @return an iterator over the child resources
         * @throws CIFSException
         */
        CloseableIterator<SmbResource> children () throws CIFSException;
    
    
        /**
         * Fetch children matching pattern, server-side filtering
         * 
         * <p>
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Dec 20 14:09:34 GMT 2020
    - 26K bytes
    - Viewed (0)
  4. src/main/java/jcifs/ACE.java

         * not be set within all security descriptors even though the ACE was in
         * face inherited. If an inherited ACE is added to a parent the Windows
         * ACL editor will rebuild all children ACEs and set this flag accordingly.
         * 
         * @return whether this is an inherited ACE
         */
        boolean isInherited ();
    
    
        /**
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbFile.java

        }
    
    
        @Override
        public CloseableIterator<SmbResource> children () throws CIFSException {
            return SmbEnumerationUtil.doEnum(this, "*", ATTR_DIRECTORY | ATTR_HIDDEN | ATTR_SYSTEM, null, null);
        }
    
    
        @Override
        public CloseableIterator<SmbResource> children ( String wildcard ) throws CIFSException {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
Back to top