Example usage for Java android.os StatFs fields, constructors, methods, implement or subclass
The text is from its open source code.
StatFs(String path) Construct a new StatFs for looking at the stats of the filesystem at path . |
int | getAvailableBlocks() |
long | getAvailableBlocksLong() The number of blocks that are free on the file system and available to applications. |
long | getAvailableBytes() The number of bytes that are free on the file system and available to applications. |
int | getBlockCount() |
long | getBlockCountLong() The total number of blocks on the file system. |
int | getBlockSize() |
long | getBlockSizeLong() The size, in bytes, of a block on the file system. |
int | getFreeBlocks() |
long | getTotalBytes() The total number of bytes supported by the file system. |
void | restat(String path) Perform a restat of the file system referenced by this object. |