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.
|
Modifier and Type | Method and Description |
---|---|
static FileTime |
Files.getLastModifiedTime(Path path,
LinkOption... options)
Returns a file's last modified time.
|
Modifier and Type | Method and Description |
---|---|
static Path |
Files.setLastModifiedTime(Path path,
FileTime time)
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(long value,
TimeUnit unit)
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 other)
Compares the value of two
FileTime 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.
|
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2013, Oracle and/or its affiliates. All rights reserved.