Java FileStore.getAttribute(String attribute)
Syntax
FileStore.getAttribute(String attribute) has the following syntax.
public abstract Object getAttribute(String attribute) throws IOException
Example
In the following code shows how to use FileStore.getAttribute(String attribute) method.
import java.io.IOException;
import java.nio.file.FileStore;
import java.nio.file.FileSystem;
import java.nio.file.FileSystems;
/*from w w w . jav a2 s . c om*/
public class Main {
public static void main(String[] args) throws IOException {
FileSystem fileSystem = FileSystems.getDefault();
for (FileStore store : fileSystem.getFileStores()) {
boolean compression = (Boolean)store.getAttribute("zfs:compression");
}
}
}
The code above generates the following result.