/** @return 返回头像储存的位置, 为sd卡picture文件夹,如果sd卡没有安装,返回null */ public static File getHeaderStorageFile() { File header = null; if (WindowUtils.isSdcardReady()) { header = new File(Environment.getExternalStorageDirectory(), AppConfig.PATH_HEAD); if (!header.exists()) { header.mkdirs(); } } return header; }
/** @return 返回日志所在的文件夹,如果sd卡没有安装,返回data/data/包名/cache */ public static File getCrashStorageFile() { File file = null; if (WindowUtils.isSdcardReady()) { file = new File(AppConfig.CRASH_LOG_STORAGE_PATH); } else { file = PwcApplication.getInstance().getCacheDir(); } if (!file.exists()) { file.mkdirs(); } return file; }