判断文件夹是否存在,不存在创建文件夹
- File file =new File("E:/workspace/net/src/main/webapp/upload");
- //如果文件夹不存在则创建
- if (!file .exists() && !file .isDirectory())
- {
- System.out.println("//不存在");
- file .mkdir();
- } else
- {
- System.out.println("//目录存在");
- }
原文地址:https://www.cnblogs.com/sanhao/p/8404471.html
时间: 2024-11-13 04:01:19