码迷,mamicode.com
首页 > 其他好文 > 详细

使用递归打印指定目录下所有文件名(包括所有子目录下的)

时间:2020-05-12 14:14:56      阅读:54      评论:0      收藏:0      [点我收藏+]

标签:glob   cto   test   auth   pre   文件   文件名   stp   div   

 1 package com.yhqtv.java1;
 2 
 3 import java.io.File;
 4 
 5 /*
 6  * 使用递归打印指定目录下所有文件名(包括所有子目录下的)
 7  * @author  XMKJ  yhqtv.com Email:yhqtv@qq.com
 8  * @create 2020-05-12-12:15
 9  *
10  */
11 public class TestPrintAllFile {
12     public static void main(String[] args) {
13         File f=new File("E:\\XM Global MT4 MultiTerminal");
14         printFile(f);
15 
16 
17     }
18     public static void printFile(File f){
19         System.out.println(f);
20         File[] files = f.listFiles();
21 
22         for (File fi : files) {
23 
24             if(fi.isDirectory()){
25                 printFile(fi);
26             }else{
27                 System.out.println(fi);
28             }
29         }
30 
31     }
32 }

 

使用递归打印指定目录下所有文件名(包括所有子目录下的)

标签:glob   cto   test   auth   pre   文件   文件名   stp   div   

原文地址:https://www.cnblogs.com/yhqtv-com/p/12875497.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!