Package net.rubygrapefruit.platform
Interface FileSystemInfo
-
- All Known Implementing Classes:
DefaultFileSystemInfo
public interface FileSystemInfoInformation about a file system. This is a snapshot view and does not change.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetDeviceName()Returns the operating system specific name for this file system.java.lang.StringgetFileSystemType()Returns the operating system specific name for the type of this file system.java.io.FilegetMountPoint()Returns the root directory of this file system.booleanisCasePreserving()Returns true if this file system preserves file name case.booleanisCaseSensitive()Returns true if this file system is performance case sensitive searches.booleanisRemote()Returns true if this file system is a remote file system, or false if local.
-
-
-
Method Detail
-
getMountPoint
java.io.File getMountPoint()
Returns the root directory of this file system.
-
getFileSystemType
java.lang.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
java.lang.String getDeviceName()
Returns the operating system specific name for this file system.
-
-