Package io.vertx.core.file
Interface FileSystemProps
-
public interface FileSystemProps
Represents properties of the file system.- Author:
- Tim Fox
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
name()
long
totalSpace()
long
unallocatedSpace()
long
usableSpace()
-
-
-
Method Detail
-
name
String name()
- Returns:
- The name of this file store
-
totalSpace
long totalSpace()
- Returns:
- The total space on the file system, in bytes
-
unallocatedSpace
long unallocatedSpace()
- Returns:
- The total un-allocated space on the file system, in bytes
-
usableSpace
long usableSpace()
- Returns:
- The total usable space on the file system, in bytes
-
-