Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 24 of 24 for getLastWriteTime (0.07 seconds)

  1. src/test/java/jcifs/internal/smb1/com/SmbComQueryInformationResponseTest.java

            long expectedTime = testTime + serverTimeZoneOffset;
            assertEquals(expectedTime, response.getCreateTime());
            assertEquals(expectedTime, response.getLastWriteTime());
            assertEquals(expectedTime, response.getLastAccessTime());
        }
    
        @Test
        void testReadParameterWordsWireFormatWithData() {
            // Test reading parameter words from wire format
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 11.9K bytes
    - Click Count (0)
  2. src/test/java/jcifs/internal/smb2/create/Smb2CreateResponseTest.java

            assertEquals(1111L, resp.getCreationTime());
            assertEquals(1111L, resp.getCreateTime()); // SmbBasicFileInfo mapping
            assertEquals(2222L, resp.getLastAccessTime());
            assertEquals(3333L, resp.getLastWriteTime());
            assertEquals(4444L, resp.getChangeTime());
            assertEquals(123456789L, resp.getAllocationSize());
            assertEquals(987654321L, resp.getEndOfFile());
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 11.5K bytes
    - Click Count (0)
  3. src/main/java/jcifs/smb/SmbFile.java

                    this.sizeExpiration = attrTimeout;
    
                }
                if (haveAttributes) {
                    this.createTime = info.getCreateTime();
                    this.lastModified = info.getLastWriteTime();
                    this.lastAccess = info.getLastAccessTime();
                    this.attributes = info.getAttributes() & ATTR_GET_MASK;
                    this.attrExpiration = attrTimeout;
                }
    
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 103.2K bytes
    - Click Count (0)
  4. src/main/java/jcifs/smb1/smb1/SmbFile.java

                    attributes = info.getAttributes();
                    createTime = info.getCreateTime();
                    lastModified = info.getLastWriteTime();
                }
    
                /* If any of the above fail, isExists will not be set true
                 */
    
                isExists = true;
    
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 112.2K bytes
    - Click Count (0)
Back to Top