Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for parent (0.15 sec)

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

            }
    
            try ( SmbTreeHandleImpl th = parent.ensureTreeConnected() ) {
                if ( th.isSMB2() ) {
                    return new DirFileEntryAdapterIterator(parent, new DirFileEntryEnumIterator2(th, parent, wildcard, fnf, searchAttributes), ff);
                }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Jul 20 08:41:19 GMT 2019
    - 12.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/DirFileEntryEnumIterator1.java

        private Trans2FindNext2 nextRequest;
        private Trans2FindFirst2Response response;
    
    
        public DirFileEntryEnumIterator1 ( SmbTreeHandleImpl th, SmbResource parent, String wildcard, ResourceNameFilter filter, int searchAttributes )
                throws CIFSException {
            super(th, parent, wildcard, filter, searchAttributes);
        }
    
    
        @SuppressWarnings ( "resource" )
        @Override
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sat Nov 13 15:13:49 GMT 2021
    - 5.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/NetServerFileEntryAdapterIterator.java

    
    class NetServerFileEntryAdapterIterator extends FileEntryAdapterIterator {
    
        /**
         * @param parent
         * @param delegate
         * @param filter
         */
        public NetServerFileEntryAdapterIterator ( SmbResource parent, NetServerEnumIterator delegate, ResourceFilter filter ) {
            super(parent, delegate, filter);
        }
    
    
        /**
         * @param fe
         * @return
         * @throws MalformedURLException
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/DirFileEntryEnumIterator2.java

    
        /**
         * @param th
         * @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);
        }
    
    
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Dec 20 16:15:08 GMT 2020
    - 5.7K bytes
    - Viewed (0)
  5. src/main/java/jcifs/SmbResourceLocator.java

    
        /**
         * Everything but the last component of the URL representing this SMB
         * resource is effectively it's parent. The root URL <code>smb://</code>
         * does not have a parent. In this case <code>smb://</code> is returned.
         *
         * @return The parent directory of this SMB resource or
         *         <code>smb://</code> if the resource refers to the root of the URL
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/DirFileEntryEnumIteratorBase.java

         * 
         */
        public DirFileEntryEnumIteratorBase ( SmbTreeHandleImpl th, SmbResource parent, String wildcard, ResourceNameFilter filter, int searchAttributes )
                throws CIFSException {
            this.parent = parent;
            this.wildcard = wildcard;
            this.nameFilter = filter;
            this.searchAttributes = searchAttributes;
    
            this.treeHandle = th.acquire();
            try {
                this.next = open();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.8K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/DirFileEntryAdapterIterator.java

    
    class DirFileEntryAdapterIterator extends FileEntryAdapterIterator {
    
        /**
         * @param parent
         * @param delegate
         * @param filter
         */
        public DirFileEntryAdapterIterator ( SmbResource parent, CloseableIterator<FileEntry> delegate, ResourceFilter filter ) {
            super(parent, delegate, filter);
        }
    
    
        /**
         * @param fe
         * @return
         * @throws MalformedURLException
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.7K bytes
    - Viewed (0)
  8. src/main/java/jcifs/ResourceNameFilter.java

     * 
     * @author mbechler
     *
     */
    public interface ResourceNameFilter {
    
        /**
         * 
         * @param parent
         * @param name
         * @return whether the given filename should be included
         * @throws CIFSException
         */
        public boolean accept ( SmbResource parent, String name ) throws CIFSException;
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1.1K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbFile.java

            try ( SmbTreeHandle th = ensureTreeConnected();
                  SmbFile parent = new SmbFile(p, getContext()) ) {
                try {
                    if ( !parent.exists() ) {
                        if ( log.isDebugEnabled() ) {
                            log.debug("Parent does not exist " + p);
                        }
                        parent.mkdirs();
                    }
                }
                catch ( SmbException e ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/FileEntryAdapterIterator.java

        private final ResourceFilter filter;
        private final SmbResource parent;
        private SmbResource next;
    
    
        /**
         * @param parent
         * @param delegate
         * @param filter
         * 
         */
        public FileEntryAdapterIterator ( SmbResource parent, CloseableIterator<FileEntry> delegate, ResourceFilter filter ) {
            this.parent = parent;
            this.delegate = delegate;
            this.filter = filter;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.5K bytes
    - Viewed (0)
Back to top