java创建多级目录文件的实例讲解

时间:2022-04-26 08:01:46

实例如下所示:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/**
 * 创建多级目录文件
 *
 * @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();
  }
}

以上这篇java创建多级目录文件的实例讲解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:http://blog.csdn.net/w592376568/article/details/78802347