摘要: /* * 需求:递归删除带内容的目录 * * 目录:demo * ---------------------------------------------------------------------------------- * 具体的demo目录如下: * demo\aaaa\a1.txt * demo\a... 阅读全文
posted @ 2017-08-15 21:27 scwyfy 阅读(226) 评论(0) 推荐(0) 编辑
摘要: /* *自定义遍历目录下指定后缀名结尾文件的名称的方法: * * param file:指定目录 name:指定后缀名 */ 1 public static void FileName(File file,String name){ 2 //转换为数组 3 File[] listFiles = file.listFiles... 阅读全文
posted @ 2017-08-15 21:06 scwyfy 阅读(622) 评论(0) 推荐(0) 编辑