Need to have JProgress bar to measure progress when copying directories and files
- by user1815823
I have the below code to copy directories and files but not sure where to measure the progress. Can someone help
as to where can I measure how much has been copied and show it in the JProgress bar
public static void copy(File src, File dest)
throws IOException{
if(src.isDirectory()){
        if(!dest.exists()){ //checking whether destination directory exisits
           dest.mkdir();
           System.out.println("Directory copied from " 
                        + src + "  to " + dest);
        }
        String files[] = src.list();
        for (String file : files) {
           File srcFile = new File(src, file);
           File destFile = new File(dest, file);
           copyFolder(srcFile,destFile);
        }
  }else{
        InputStream in = new FileInputStream(src);
          OutputStream out = new FileOutputStream(dest); 
          byte[] buffer = new byte[1024];
          int length;
          while ((length = in.read(buffer)) > 0){
           out.write(buffer, 0, length);
          }
          in.close();
          out.close();
          System.out.println("File copied from " + src + " to " + dest);
  }