Uses of Class
java.nio.file.attribute.FileTime
Packages that use FileTime
Package
Description
Defines interfaces and classes for the Java virtual machine to access files,
file attributes, and file systems.
Interfaces and classes providing access to file and file system attributes.
Provides classes for reading and writing the standard ZIP and GZIP file
formats.
-
Uses of FileTime in java.nio.file
Methods in java.nio.file that return FileTimeModifier and TypeMethodDescriptionstatic FileTime
Files.getLastModifiedTime
(Path path, LinkOption... options) Returns a file's last modified time.Methods in java.nio.file with parameters of type FileTimeModifier and TypeMethodDescriptionstatic Path
Files.setLastModifiedTime
(Path path, FileTime time) Updates a file's last modified time attribute. -
Uses of FileTime in java.nio.file.attribute
Methods in java.nio.file.attribute that return FileTimeModifier and TypeMethodDescriptionBasicFileAttributes.creationTime()
Returns the creation time.static FileTime
Returns aFileTime
representing a value at the given unit of granularity.static FileTime
Returns aFileTime
representing the same point of time value on the time-line as the providedInstant
object.static FileTime
FileTime.fromMillis
(long value) Returns aFileTime
representing the given value in milliseconds.BasicFileAttributes.lastAccessTime()
Returns the time of last access.BasicFileAttributes.lastModifiedTime()
Returns the time of last modification.Methods in java.nio.file.attribute with parameters of type FileTimeModifier and TypeMethodDescriptionint
Compares the value of twoFileTime
objects for order.void
BasicFileAttributeView.setTimes
(FileTime lastModifiedTime, FileTime lastAccessTime, FileTime createTime) Updates any or all of the file's last modified time, last access time, and create time attributes. -
Uses of FileTime in java.util.zip
Methods in java.util.zip that return FileTimeModifier and TypeMethodDescriptionZipEntry.getCreationTime()
Returns the creation time of the entry.ZipEntry.getLastAccessTime()
Returns the last access time of the entry.ZipEntry.getLastModifiedTime()
Returns the last modification time of the entry.Methods in java.util.zip with parameters of type FileTimeModifier and TypeMethodDescriptionZipEntry.setCreationTime
(FileTime time) Sets the creation time of the entry.ZipEntry.setLastAccessTime
(FileTime time) Sets the last access time of the entry.ZipEntry.setLastModifiedTime
(FileTime time) Sets the last modification time of the entry.