Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for searchAttributes (0.11 sec)

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

         * @param parent
         * @param wildcard
         * @param filter
         * @param searchAttributes
         * @throws CIFSException
         */
        public DirFileEntryEnumIterator2 ( SmbTreeHandleImpl th, SmbResource parent, String wildcard, ResourceNameFilter filter, int searchAttributes )
                throws CIFSException {
            super(th, parent, wildcard, filter, searchAttributes);
        }
    
    
        /**
         * {@inheritDoc}
         *
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Dec 20 16:15:08 UTC 2020
    - 5.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/DirFileEntryEnumIterator1.java

    
        public DirFileEntryEnumIterator1 ( SmbTreeHandleImpl th, SmbResource parent, String wildcard, ResourceNameFilter filter, int searchAttributes )
                throws CIFSException {
            super(th, parent, wildcard, filter, searchAttributes);
        }
    
    
        @SuppressWarnings ( "resource" )
        @Override
        protected final FileEntry open () throws CIFSException {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sat Nov 13 15:13:49 UTC 2021
    - 5.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/NetServerEnumIterator.java

        private FileEntry next;
    
    
        /**
         * @param parent
         * @param th
         * @param wildcard
         * @param searchAttributes
         * @param filter
         * @throws CIFSException
         * 
         */
        public NetServerEnumIterator ( SmbFile parent, SmbTreeHandleImpl th, String wildcard, int searchAttributes, ResourceNameFilter filter )
                throws CIFSException {
            this.parent = parent;
            this.nameFilter = filter;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbFile.java

        }
        String[] list( String wildcard, int searchAttributes,
                    SmbFilenameFilter fnf, SmbFileFilter ff ) throws SmbException {
            ArrayList list = new ArrayList();
            doEnum(list, false, wildcard, searchAttributes, fnf, ff);
            return (String[])list.toArray(new String[list.size()]);
        }
        SmbFile[] listFiles( String wildcard, int searchAttributes,
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
Back to top