Interface FileProps


public interface FileProps
Represents properties of a file on the file system.

Author:
Tim Fox
  • Method Summary

    Modifier and Type
    Method
    Description
    long
    The date the file was created
    boolean
    Is the file a directory?
    boolean
    Is the file some other type?
    boolean
    Is the file a regular file?
    boolean
    Is the file a symbolic link?
    long
    The date the file was last accessed
    long
    The date the file was last modified
    long
    The size of the file, in bytes
  • Method Details

    • 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