FileStore.supportsFileAttributeView(String name) has the following syntax.
public abstract boolean supportsFileAttributeView(String name)
In the following code shows how to use FileStore.supportsFileAttributeView(String name) method.
import java.io.IOException; import java.nio.file.FileStore; import java.nio.file.FileSystem; import java.nio.file.FileSystems; import java.nio.file.attribute.BasicFileAttributeView; //from w w w . j av a2 s .co m public class Main { public static void main(String[] args) throws IOException { FileSystem fileSystem = FileSystems.getDefault(); for (FileStore store : fileSystem.getFileStores()) { boolean supported = store.supportsFileAttributeView("basic"); System.out.println(store.name() + " ---" + supported); } } }
The code above generates the following result.