Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for getLastWriteTime (0.08 sec)

  1. src/main/java/jcifs/internal/smb2/create/Smb2CreateResponse.java

        @Override
        public final long getLastAccessTime () {
            return this.lastAccessTime;
        }
    
    
        /**
         * @return the lastWriteTime
         */
        @Override
        public final long getLastWriteTime () {
            return this.lastWriteTime;
        }
    
    
        /**
         * @return the changeTime
         */
        public final long getChangeTime () {
            return this.changeTime;
        }
    
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.6K bytes
    - Viewed (0)
  2. 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;
                }
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbFile.java

                        Trans2QueryPathInformationResponse.SMB_QUERY_FILE_BASIC_INFO );
                    attributes = info.getAttributes();
                    createTime = info.getCreateTime();
                    lastModified = info.getLastWriteTime();
                }
    
                /* If any of the above fail, isExists will not be set true
                 */
    
                isExists = true;
    
            } catch( UnknownHostException uhe ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
Back to top