Java android.os StatFs fields, constructors, methods, implement or subclass

Example usage for Java android.os StatFs fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for android.os StatFs.

The text is from its open source code.

Constructor

StatFs(String path)
Construct a new StatFs for looking at the stats of the filesystem at path .

Method

intgetAvailableBlocks()
longgetAvailableBlocksLong()
The number of blocks that are free on the file system and available to applications.
longgetAvailableBytes()
The number of bytes that are free on the file system and available to applications.
intgetBlockCount()
longgetBlockCountLong()
The total number of blocks on the file system.
intgetBlockSize()
longgetBlockSizeLong()
The size, in bytes, of a block on the file system.
intgetFreeBlocks()
longgetTotalBytes()
The total number of bytes supported by the file system.
voidrestat(String path)
Perform a restat of the file system referenced by this object.