Lines Matching defs:date

58  * <li>file last changed date

209 * closed without modifying it, but updating the file date and time.
212 * modified date of the file cannot be set. Also, as from v1.3 this method
542 * Copies a file to a directory preserving the file date.
562 * Copies a file to a directory optionally preserving the file date.
571 * @param preserveFileDate true if the file date of the copy
591 * Copies a file to a new location preserving the file date.
620 * @param preserveFileDate true if the file date of the copy
661 * @param preserveFileDate whether to preserve the file date
760 * @param preserveFileDate true if the file date of the copy
849 * @param preserveFileDate true if the file date of the copy
896 * @param preserveFileDate whether to preserve the file date
1536 * @param file the <code>File</code> of which the modification date must
1538 * @param reference the <code>File</code> of which the modification date
1560 * @param file the <code>File</code> of which the modification date
1562 * @param date the date reference, must not be <code>null</code>
1566 * @throws IllegalArgumentException if the date is <code>null</code>
1568 public static boolean isFileNewer(File file, Date date) {
1569 if (date == null) {
1570 throw new IllegalArgumentException("No specified date");
1572 return isFileNewer(file, date.getTime());
1579 * @param file the <code>File</code> of which the modification date must
1603 * @param file the <code>File</code> of which the modification date must
1605 * @param reference the <code>File</code> of which the modification date
1627 * @param file the <code>File</code> of which the modification date
1629 * @param date the date reference, must not be <code>null</code>
1633 * @throws IllegalArgumentException if the date is <code>null</code>
1635 public static boolean isFileOlder(File file, Date date) {
1636 if (date == null) {
1637 throw new IllegalArgumentException("No specified date");
1639 return isFileOlder(file, date.getTime());
1646 * @param file the <code>File</code> of which the modification date must