zoukankan      html  css  js  c++  java
  • Java中读取某个目录下的所有文件和文件夹

    import java.io.File;
    public class Test1 {
      public static void main(String[] args) {
        String path="d:/";
        File file=new File(path);
        File[] tempList = file.listFiles();
        System.out.println("该目录下对象个数:"+tempList.length);
        for (int i = 0; i < tempList.length; i++) {
          if (tempList[i].isFile()) {
            System.out.println("文     件:"+tempList[i]);
          }
          if (tempList[i].isDirectory()) {
            System.out.println("文件夹:"+tempList[i]);
          }
        }
        for(int i=0;i<array.length;i++){   
          if(array[i].isFile()){   
            // only take file name   
            System.out.println("^^^^^" + array[i].getName());   
            // take file path and name   
            System.out.println("#####" + array[i]);   
            // take file path and name   
            System.out.println("*****" + array[i].getPath());   
          }else if(array[i].isDirectory()){   
            getFile(array[i].getPath());   
          }   
        } 
      } 
    }
  • 相关阅读:
    协成
    进程与线程-多线程
    进程与线程2
    进程与线程
    socket编程
    常用模块二(hashlib、configparser、logging)
    异常处理
    python之路——面向对象进阶
    封装
    初识——面向对象
  • 原文地址:https://www.cnblogs.com/chen-lhx/p/4997541.html
Copyright © 2011-2022 走看看