Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 22 of 22 for getLastAccessTime (0.1 sec)

  1. docs/smb3-features/04-directory-leasing-design.md

                this.isDirectory = attrs.isDirectory();
                this.attributes = attrs.getAttributes();
                this.creationTime = attrs.getCreateTime();
                this.lastAccessTime = attrs.getLastAccessTime();
            }
            
            public boolean matches(SmbFileAttributes attrs) {
                return size == attrs.getSize() 
                    && lastModified == attrs.getLastWriteTime()
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 36.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

                }
                if (haveAttributes) {
                    this.createTime = info.getCreateTime();
                    this.lastModified = info.getLastWriteTime();
                    this.lastAccess = info.getLastAccessTime();
                    this.attributes = info.getAttributes() & ATTR_GET_MASK;
                    this.attrExpiration = attrTimeout;
                }
    
                this.isExists = true;
                return fh;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
Back to top