Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Rashed (0.15 sec)

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

            }
    
            setPathInformation( 0, 0L, time );
        }
    
    /**
     * Return the attributes of this file. Attributes are represented as a
     * bitset that must be masked with <tt>ATTR_*</tt> constants to determine
     * if they are set or unset. The value returned is suitable for use with
     * the <tt>setAttributes()</tt> method.
     *
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  2. src/main/java/jcifs/smb/SmbFile.java

            return response;
        }
    
    
        @Override
        public boolean exists () throws SmbException {
    
            if ( this.attrExpiration > System.currentTimeMillis() ) {
                log.trace("Using cached attributes");
                return this.isExists;
            }
    
            this.attributes = ATTR_READONLY | ATTR_DIRECTORY;
            this.createTime = 0L;
            this.lastModified = 0L;
            this.lastAccess = 0L;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
Back to top