()
| 343 | } |
| 344 | |
| 345 | public String notInNUS() { |
| 346 | StringBuilder sb = new StringBuilder(); |
| 347 | for(FEntry f: getFileEntries()){ |
| 348 | if(!f.isDir() && !f.isInNUSTitle()){ |
| 349 | sb.append(f.getFullPath() + " " + String.format("%8.2f MB ", f.getFileLength()/1024.0/1024.0) + "\n"); |
| 350 | } |
| 351 | } |
| 352 | return sb.toString(); |
| 353 | } |
| 354 | |
| 355 | public Directory<FEntry> getFSTDirectory() { |
| 356 | return FSTDirectory; |
nothing calls this directly
no test coverage detected