java中判断文件及所在文件夹是否存在

File file=new File(filePath);
if (file.exists()) {
}else {
File fileParent =new File(file.getParent());
fileParent.mkdirs();
}
posted @ 2017-09-15 09:38  panda521  阅读(1861)  评论(0编辑  收藏  举报