/** * 创建多级目录文件 * * @param path 文件路径 * @throws IOException */ private void createFile(String path) throws IOException { if (StringUtils.isNotEmpty(path)) { File file = new File(path); if (!file.getParentFile().exists()) { file.getParentFile().mkdirs(); } file.createNewFile(); } }
</div>
第二种方法代码如下:
//路径
String path = "/usr/sunny/images/product/img/";
File file = new File(path);
//如果路径不存在,新建
if(!file.exists()&&!file.isDirectory()) {
file.mkdirs();
}
thinkphp数据输出
thinkphp 命名规范
array_fill — 用给定的值填充数组
array_fill_keys — 使用指定的键和值填充数组
array_change_key_case — 将数组中的所有键名修改为全大写或小写
HTMLCSS样式表
MySql查询语句中的变量使用
使用java8的方法引用替换硬编码
如何搭建一个自己的网站(绝对详细~)