Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getWildcards (0.14 sec)

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

            create.setDesiredAccess(SmbConstants.FILE_READ_DATA | SmbConstants.FILE_READ_ATTRIBUTES);
            Smb2QueryDirectoryRequest query = new Smb2QueryDirectoryRequest(th.getConfig());
            query.setFileName(getWildcard());
            create.chain(query);
            Smb2CreateResponse createResp;
            try {
                createResp = th.send(create);
            }
            catch ( SmbException e ) {
    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

            try {
                th.send(
                    new Trans2FindFirst2(
                        th.getConfig(),
                        unc,
                        this.getWildcard(),
                        this.getSearchAttributes(),
                        th.getConfig().getListCount(),
                        th.getConfig().getListSize() - FIND_OVERHEAD),
                    this.response);
    
    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/DirFileEntryEnumIteratorBase.java

         * @return the searchAttributes
         */
        public final int getSearchAttributes () {
            return this.searchAttributes;
        }
    
    
        /**
         * @return the wildcard
         */
        public final String getWildcard () {
            return this.wildcard;
        }
    
    
        /**
         * @return the parent
         */
        public final SmbResource getParent () {
            return this.parent;
        }
    
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.8K bytes
    - Viewed (0)
Back to top