Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

         *
         * @return the last modified data as milliseconds since Jan 1, 1970
         */
        @Override
        public long getDate () {
            try {
                return lastModified();
            }
            catch ( SmbException se ) {
                log.debug("getDate", se);
            }
            return 0L;
        }
    
    
        /**
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbFile.java

    /**
     * Set the last modified time of the file. The time is specified as milliseconds
     * from Jan 1, 1970 which is the same as that which is returned by the
     * <tt>lastModified()</tt>, <tt>getLastModified()</tt>, and <tt>getDate()</tt> methods.
     * <p/>
     * This method does not apply to workgroups, servers, or shares.
     *
     * @param time the last modified time as milliseconds since Jan 1, 1970
     */
    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