Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for filename (0.16 sec)

  1. src/main/java/jcifs/internal/smb1/trans2/Trans2FindFirst2.java

            }
            else if ( filename.charAt(filename.length() - 1) != '\\' ) {
                this.path = filename + "\\";
            }
            else {
                this.path = filename;
            }
            this.wildcard = wildcard;
            this.searchAttributes = searchAttributes & 0x37; /* generally ignored tho */
    
            this.tflags = 0x00;
            this.informationLevel = SMB_FILE_BOTH_DIRECTORY_INFO;
    
            this.totalDataCount = 0;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/Trans2FindFirst2.java

        static final int LIST_COUNT = Config.getInt( "jcifs.smb1.smb.client.listCount", DEFAULT_LIST_COUNT );
    
        Trans2FindFirst2( String filename, String wildcard, int searchAttributes ) {
            if( filename.equals( "\\" )) {
                this.path = filename;
            } else {
                this.path = filename + "\\";
            }
            this.wildcard = wildcard;
            this.searchAttributes = searchAttributes & 0x37; /* generally ignored tho */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 4.4K bytes
    - Viewed (0)
Back to top