Java FileStore.getTotalSpace()
Syntax
FileStore.getTotalSpace() has the following syntax.
public abstract long getTotalSpace() throws IOException
Example
In the following code shows how to use FileStore.getTotalSpace() method.
/*w w w . j a va 2s . c o m*/
import java.io.IOException;
import java.nio.file.FileStore;
import java.nio.file.FileSystem;
import java.nio.file.FileSystems;
public class Main {
public static void main(String[] args) throws IOException {
FileSystem fileSystem = FileSystems.getDefault();
for (FileStore store : fileSystem.getFileStores()) {
long total = store.getTotalSpace() / 1024;
System.out.println(total);
}
}
}
The code above generates the following result.