本文主要是介绍列出某个目录下面所有的文件与目录,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
import java.io.File;
public class wenjian {
/**
* 遍历该对应对应的数组
*/
public static void main(String[] args) {
File file=new File("d:/某银行新规面资料");
if(file.exists()){
File[] fl= file.listFiles();
for (File file2 : fl) {
if(file2.isDirectory()){
System.out.println("目录"+file2.getName());//目录名字
}else{
System.out.println("文件的名字"+file2.getName());//文件的名字
}
}
}
}
}
目录.svn
目录docs
文件的名字docs.rar
文件的名字salm报工.docx
目录tws_docs_0921
文件的名字tws_docs_0921.rar
文件的名字新建文本文档.txt
这篇关于列出某个目录下面所有的文件与目录的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!