Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for transaccions (0.17 sec)

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

            } else {
                this.path = filename + "\\";
            }
            this.wildcard = wildcard;
            this.searchAttributes = searchAttributes & 0x37; /* generally ignored tho */
            command = SMB_COM_TRANSACTION2;
            subCommand = TRANS2_FIND_FIRST2;
    
            flags = 0x00;
            informationLevel = SMB_FILE_BOTH_DIRECTORY_INFO;
    
            totalDataCount = 0;
            maxParameterCount = 10;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 4.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/trans2/Trans2FindFirst2.java

         * @param batchSize
         */
        public Trans2FindFirst2 ( Configuration config, String filename, String wildcard, int searchAttributes, int batchCount, int batchSize ) {
            super(config, SMB_COM_TRANSACTION2, TRANS2_FIND_FIRST2);
            if ( filename.equals("\\") ) {
                this.path = filename;
            }
            else if ( filename.charAt(filename.length() - 1) != '\\' ) {
                this.path = filename + "\\";
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.8K bytes
    - Viewed (0)
Back to top