摘要: 1.文件/文件夹是否存在 文件/文件夹是否存在,不存在就创建 File file = new File(filePath); if(!file.exsists){ file.mkdir(); } 2.文件夹是否存在 File file =new File(filePath); if(!file.is 阅读全文
posted @ 2021-03-08 10:17 staystand 阅读(565) 评论(0) 推荐(0)