标签:android style blog io color os sp strong on
原来代码:
File tempDir = new File(path); //path 是一个参数 if (!tempDir.exists()) { try { tempDir.mkdir(); //mkdirs 可创建多级目录,mkdir只能创建以及目录 } catch (Exception ex) { Log.e("mkdir", "创建文件目录失败" + ex.toString()); } }
注意里面的一句话:
mkdirs 可创建多级目录,mkdir只能创建以及目录
所以解决办法:
把tempDir.mkdir(); 改为 tempDir.mkdirs();
标签:android style blog io color os sp strong on
原文地址:http://www.cnblogs.com/feijian/p/4162553.html