Java IO Tutorial - Java DosFileAttributes.isArchive()








Syntax

DosFileAttributes.isArchive() has the following syntax.

boolean isArchive()

Example

In the following code shows how to use DosFileAttributes.isArchive() method.

import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.nio.file.attribute.DosFileAttributes;
/*ww  w.  j a v a 2  s .c om*/
public class Main {

    public static void main(String[] args) {
      DosFileAttributes attr = null;
      Path path = Paths.get("C:/tutorial/Java/JavaFX", "Topic.txt");

      try {
          attr = Files.readAttributes(path, DosFileAttributes.class);
      } catch (IOException e) {
          System.err.println(e);
      }
      System.out.println("Is archive ? " + attr.isArchive());
    }
}