Beispiel #1
0
 public long getOutputSize() throws IOException {
   long size = 0;
   for (Path path : getRecordedDirsAndFiles()) {
     if (projectFilesystem.isFile(path)) {
       size += projectFilesystem.getFileSize(path);
     }
   }
   return size;
 }