当前位置: 技术问答>java相关
如何判断目录存不存在?
来源: 互联网 发布时间:2015-06-27
本文导语: 想知道目录A下有否目录B | 假设A是绝对路径。 String path = A + "" + B; File tempFile = new File(path); if (tempFile.exists()) { 存在 } else { 不存在 } | String path ="c:aaa"; File Filepath=...
想知道目录A下有否目录B
|
假设A是绝对路径。
String path = A + "" + B;
File tempFile = new File(path);
if (tempFile.exists()) {
存在
} else {
不存在
}
String path = A + "" + B;
File tempFile = new File(path);
if (tempFile.exists()) {
存在
} else {
不存在
}
|
String path ="c:aaa";
File Filepath=new File(path);
if(!Filepath.exists())
Filepath.mkdir();
如果c:aaa不存在则加一个
File Filepath=new File(path);
if(!Filepath.exists())
Filepath.mkdir();
如果c:aaa不存在则加一个
|
TRY
CATCH
CATCH