知识补充:endsWith() 方法用于测试字符串是否以指定的后缀结束。更多学习视频推荐:java语言入门实例: //String dirName = "D:/work/temp/temp0/temp1"; public stat
知识补充:
endsWith()
方法用于测试字符串是否以指定的后缀结束。
实例:
//String dirName = "D:/work/temp/temp0/temp1";
public static boolean createDir(String destDirName) {
File dir = new File(destDirName);
if (dir.exists()) {
System.out.println("创建目录" + destDirName + "失败,目标目录已经存在");
return false;
}
if (!destDirName.endsWith(File.separator)) {
destDirName = destDirName + File.separator;
}
//创建目录
if (dir.mkdirs()) {
System.out.println("创建目录" + destDirName + "成功!");
return true;
} else {
System.out.println("创建目录" + destDirName + "失败!");
return false;
}
}
相关文章推荐:java编程入门
--结束END--
本文标题: java中判断目录是否存在,若不存在则创建
本文链接: https://lsjlt.com/news/1683.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-04-01
2024-04-03
2024-04-03
2024-01-21
2024-01-21
2024-01-21
2024-01-21
2023-12-23
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0