Interface FileSystemInfo

All Known Implementing Classes:
DefaultFileSystemInfo

public interface FileSystemInfo
Information about a file system. This is a snapshot view and does not change.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the operating system specific name for this file system.
    Returns the operating system specific name for the type of this file system.
    Returns the root directory of this file system.
    boolean
    Returns true if this file system preserves file name case.
    boolean
    Returns true if this file system is performance case sensitive searches.
    boolean
    Returns true if this file system is a remote file system, or false if local.
  • Method Details

    • getMountPoint

      File getMountPoint()
      Returns the root directory of this file system.
    • getFileSystemType

      String getFileSystemType()
      Returns the operating system specific name for the type of this file system.
    • isRemote

      boolean isRemote()
      Returns true if this file system is a remote file system, or false if local.
    • isCaseSensitive

      boolean isCaseSensitive()
      Returns true if this file system is performance case sensitive searches.
    • isCasePreserving

      boolean isCasePreserving()
      Returns true if this file system preserves file name case.
    • getDeviceName

      String getDeviceName()
      Returns the operating system specific name for this file system.