Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/main/java/jcifs/SmbResource.java

    
        /**
         * Retrieve the last acces time of the file represented by this <code>SmbResource</code>
         * 
         * @return The number of milliseconds since the 00:00:00 GMT, January 1,
         *         1970 as a <code>long</code> value
         * @throws CIFSException
         */
        long lastAccess () throws CIFSException;
    
    
        /**
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Dec 20 14:09:34 GMT 2020
    - 26K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbFile.java

     *
     * For Win95/98/Me this is actually the last write time. It is currently
     * not possible to retrieve the create time from files on these systems.
     *
     * @return The number of milliseconds since the 00:00:00 GMT, January 1,
     *         1970 as a <code>long</code> value
     */
        public long createTime() throws SmbException {
            if( getUncPath0().length() > 1 ) {
                exists();
                return createTime;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
Back to top