Package io.vertx.core.file
Interface FileProps
-
public interface FileProps
Represents properties of a file on the file system.- Author:
- Tim Fox
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
creationTime()
The date the file was createdboolean
isDirectory()
Is the file a directory?boolean
isOther()
Is the file some other type? (I.e.boolean
isRegularFile()
Is the file a regular file?boolean
isSymbolicLink()
Is the file a symbolic link?long
lastAccessTime()
The date the file was last accessedlong
lastModifiedTime()
The date the file was last modifiedlong
size()
The size of the file, in bytes
-
-
-
Method Detail
-
creationTime
long creationTime()
The date the file was created
-
lastAccessTime
long lastAccessTime()
The date the file was last accessed
-
lastModifiedTime
long lastModifiedTime()
The date the file was last modified
-
isDirectory
boolean isDirectory()
Is the file a directory?
-
isOther
boolean isOther()
Is the file some other type? (I.e. not a directory, regular file or symbolic link)
-
isRegularFile
boolean isRegularFile()
Is the file a regular file?
-
isSymbolicLink
boolean isSymbolicLink()
Is the file a symbolic link?
-
size
long size()
The size of the file, in bytes
-
-