Home  >  Article  >  Java  >  Java example - traverse all directories under the specified directory

Java example - traverse all directories under the specified directory

黄舟
黄舟Original
2017-02-13 10:22:151348browse

The following example demonstrates how to use the list method of the File class to traverse all directories under a specified directory:

/*
 author by w3cschool.cc
 Main.java
 */import java.io.*;class Main {
   public static void main(String[] args) {
      File dir = new File("F:");
      File[] files = dir.listFiles();
      FileFilter fileFilter = new FileFilter() {
         public boolean accept(File file) {
            return file.isDirectory();
         }
      };
      files = dir.listFiles(fileFilter);
      System.out.println(files.length);
      if (files.length == 0) {
         System.out.println("目录不存在或它不是一个目录");
      }
      else {
         for (int i=0; i< files.length; i++) {
            File filename = files[i];
            System.out.println(filename.toString());
         }
      }
   }}

The output result of running the above code is:

14F:\C Drive Data Old HDD
F:\Desktop1
F:\harsh
F:\hharsh finalF:\hhhh
F:\mov
F:\msdownld.tmp
F:\New FolderF:\ravi
F:\ravi3
F:\RECYCLER
F:\System Volume InformationF:\temp
F:\work

The above is Java Example - Traverse the contents of all directories under the specified directory. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!



Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn