| | |
| | | } |
| | | |
| | | public String getAbsoluteFile(String filename) { |
| | | String downloadPath = EssConfig.getDownloadPath() + filename; |
| | | String downloadPath = EssConfig.getDownloadPath() + "/" + filename; |
| | | File desc = new File(downloadPath); |
| | | if (!desc.getParentFile().exists()) { |
| | | desc.getParentFile().mkdirs(); |
| | |
| | | return desc; |
| | | } |
| | | public File getAbsoluteFileZipByName(String filename) { |
| | | String downloadPath = EssConfig.getDownloadPath() + filename; |
| | | String downloadPath = EssConfig.getDownloadPath() + "/" + filename; |
| | | File desc = new File(downloadPath); |
| | | if (!desc.getParentFile().exists()) { |
| | | desc.getParentFile().mkdirs(); |