Java FileSystem get operating system supported attribute views
import java.nio.file.FileSystem; import java.nio.file.Path; import java.nio.file.Paths; import java.util.Set; public class Main { public static void main(String[] args) { Path path = Paths.get("C:/"); FileSystem fileSystem = path.getFileSystem(); Set<String> supportedViews = fileSystem.supportedFileAttributeViews(); for (String view : supportedViews) { System.out.println(view); }//from w w w . j a v a2s.c o m } }