List of usage examples for android.os StatFs restat
public void restat(String path)
From source file:Main.java
private static long getTotalSize(String path) { StatFs fileStats = new StatFs(path); fileStats.restat(path); return (long) fileStats.getBlockCount() * fileStats.getBlockSize(); }