()
| 147 | |
| 148 | |
| 149 | public String getDownloadPath(){ |
| 150 | |
| 151 | String [] path = getFullPath().split("/"); |
| 152 | String folder = getTargetPath() +"/"; |
| 153 | for(int i = 0;i<path.length-1;i++){ |
| 154 | if(!path[i].equals("")){ |
| 155 | folder += path[i] + "/"; |
| 156 | } |
| 157 | } |
| 158 | return folder; |
| 159 | } |
| 160 | |
| 161 | public boolean localValidDecryptedFileFound(){ |
| 162 | boolean result = false; |
no test coverage detected