| Package | Description |
|---|---|
| java.nio.file |
Defines interfaces and classes for the Java virtual machine to access files, file attributes, and file systems.
|
| java.nio.file.attribute |
Interfaces and classes providing access to file and file system attributes.
|
| java.util.zip |
Provides classes for reading and writing the standard ZIP and GZIP file formats.
|
| Modifier and Type | Method and Description |
|---|---|
static FileTime |
Files.getLastModifiedTime(Path
Returns a file's last modified time.
|
| Modifier and Type | Method and Description |
|---|---|
static Path |
Files.setLastModifiedTime(Path
Updates a file's last modified time attribute.
|
| Modifier and Type | Method and Description |
|---|---|
FileTime |
BasicFileAttributes.creationTime()
Returns the creation time.
|
static FileTime |
FileTime.from(Instant
Returns a
FileTime representing the same point of time value on the time-line as the provided
Instant object.
|
static FileTime |
FileTime.from(long value, TimeUnit
Returns a
FileTime representing a value at the given unit of granularity.
|
static FileTime |
FileTime.fromMillis(long value)
Returns a
FileTime representing the given value in milliseconds.
|
FileTime |
BasicFileAttributes.lastAccessTime()
Returns the time of last access.
|
FileTime |
BasicFileAttributes.lastModifiedTime()
Returns the time of last modification.
|
| Modifier and Type | Method and Description |
|---|---|
int |
FileTime.compareTo(FileTime
Compares the value of two
FileTime objects for order.
|
void |
BasicFileAttributeView.setTimes(FileTime
Updates any or all of the file's last modified time, last access time, and create time attributes.
|
| Modifier and Type | Method and Description |
|---|---|
FileTime |
ZipEntry.getCreationTime()
Returns the creation time of the entry.
|
FileTime |
ZipEntry.getLastAccessTime()
Returns the last access time of the entry.
|
FileTime |
ZipEntry.getLastModifiedTime()
Returns the last modification time of the entry.
|
| Modifier and Type | Method and Description |
|---|---|
ZipEntry |
ZipEntry.setCreationTime(FileTime
Sets the creation time of the entry.
|
ZipEntry |
ZipEntry.setLastAccessTime(FileTime
Sets the last access time of the entry.
|
ZipEntry |
ZipEntry.setLastModifiedTime(FileTime
Sets the last modification time of the entry.
|