摘要:
controller层 /** * 下载图片-->创建文件夹 * @param params * @return * @throws Exception */ @PostMapping("/handerImageDownload") public AjaxResult handerImageDown 阅读全文
摘要:
//使用递归遍历文件夹及子文件夹中文件 public void filesDirs(File file){ //File对象是文件或文件夹的路径,第一层判断路径是否为空 if(file!=null){ //第二层路径不为空,判断是文件夹还是文件 if(file.isDirectory()){ //进 阅读全文