Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8903517
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T01:53:20+00:00 2026-06-15T01:53:20+00:00

I have the below code to copy directories and files but not sure where

  • 0

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);
  }
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T01:53:21+00:00Added an answer on June 15, 2026 at 1:53 am

    I have just written this utility for you 🙂 (It takes me about 3 hours):

    enter image description here

    import java.awt.BorderLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.WindowAdapter;
    import java.awt.event.WindowEvent;
    import java.beans.PropertyChangeEvent;
    import java.beans.PropertyChangeListener;
    import java.io.BufferedInputStream;
    import java.io.BufferedOutputStream;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.util.List;
    
    import javax.swing.BorderFactory;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JOptionPane;
    import javax.swing.JPanel;
    import javax.swing.JProgressBar;
    import javax.swing.JScrollPane;
    import javax.swing.JTextArea;
    import javax.swing.JTextField;
    import javax.swing.SwingUtilities;
    import javax.swing.SwingWorker;
    import javax.swing.event.DocumentEvent;
    import javax.swing.event.DocumentListener;
    import javax.swing.text.DefaultCaret;
    
    public class FileCopierUtility extends JFrame implements ActionListener, PropertyChangeListener
    {
        private static final long serialVersionUID = 1L;
    
        private JTextField txtSource;
        private JTextField txtTarget;
        private JProgressBar progressAll;
        private JProgressBar progressCurrent;
        private JTextArea txtDetails;
        private JButton btnCopy;
        private CopyTask task;
    
        public FileCopierUtility()
        {
            buildGUI();
        }
    
        private void buildGUI()
        {
            setTitle("File Copier Utility");
            setDefaultCloseOperation(DO_NOTHING_ON_CLOSE);
    
            addWindowListener(new WindowAdapter()
            {
                @Override
                public void windowClosing(WindowEvent e)
                {
                    if(task != null) task.cancel(true);
                    dispose();
                    System.exit(0);
                }
            });
    
            JLabel lblSource = new JLabel("Source Path: ");
            JLabel lblTarget = new JLabel("Target Path: ");
            txtSource = new JTextField(50);
            txtTarget = new JTextField(50);
            JLabel lblProgressAll = new JLabel("Overall: ");
            JLabel lblProgressCurrent = new JLabel("Current File: ");
            progressAll = new JProgressBar(0, 100);
            progressAll.setStringPainted(true);
            progressCurrent = new JProgressBar(0, 100);
            progressCurrent.setStringPainted(true);
            txtDetails = new JTextArea(5, 50);
            txtDetails.setEditable(false);
            DefaultCaret caret = (DefaultCaret) txtDetails.getCaret();
            caret.setUpdatePolicy(DefaultCaret.ALWAYS_UPDATE);
            JScrollPane scrollPane = new JScrollPane(txtDetails, JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED, JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
            btnCopy = new JButton("Copy");
            btnCopy.setFocusPainted(false);
            btnCopy.setEnabled(false);
            btnCopy.addActionListener(this);
    
            DocumentListener listener = new DocumentListener()
            {
                @Override
                public void removeUpdate(DocumentEvent e)
                {
                    boolean bEnabled = txtSource.getText().length() > 0 && txtTarget.getText().length() > 0;
                    btnCopy.setEnabled(bEnabled);
                }
    
                @Override
                public void insertUpdate(DocumentEvent e)
                {
                    boolean bEnabled = txtSource.getText().length() > 0 && txtTarget.getText().length() > 0;
                    btnCopy.setEnabled(bEnabled);
                }
    
                @Override
                public void changedUpdate(DocumentEvent e){}
            };
    
            txtSource.getDocument().addDocumentListener(listener);
            txtTarget.getDocument().addDocumentListener(listener);
    
            JPanel contentPane = (JPanel) getContentPane();
            contentPane.setBorder(BorderFactory.createEmptyBorder(5, 5, 5, 5));
    
            JPanel panInputLabels = new JPanel(new BorderLayout(0, 5));
            JPanel panInputFields = new JPanel(new BorderLayout(0, 5));
            JPanel panProgressLabels = new JPanel(new BorderLayout(0, 5));
            JPanel panProgressBars = new JPanel(new BorderLayout(0, 5));
    
            panInputLabels.add(lblSource, BorderLayout.NORTH);
            panInputLabels.add(lblTarget, BorderLayout.CENTER);
            panInputFields.add(txtSource, BorderLayout.NORTH);
            panInputFields.add(txtTarget, BorderLayout.CENTER);
            panProgressLabels.add(lblProgressAll, BorderLayout.NORTH);
            panProgressLabels.add(lblProgressCurrent, BorderLayout.CENTER);
            panProgressBars.add(progressAll, BorderLayout.NORTH);
            panProgressBars.add(progressCurrent, BorderLayout.CENTER);
    
            JPanel panInput = new JPanel(new BorderLayout(0, 5));
            panInput.setBorder(BorderFactory.createCompoundBorder(BorderFactory.createTitledBorder("Input"), BorderFactory.createEmptyBorder(5, 5, 5, 5)));
            JPanel panProgress = new JPanel(new BorderLayout(0, 5));
            panProgress.setBorder(BorderFactory.createCompoundBorder(BorderFactory.createTitledBorder("Progress"), BorderFactory.createEmptyBorder(5, 5, 5, 5)));
            JPanel panDetails = new JPanel(new BorderLayout());
            panDetails.setBorder(BorderFactory.createCompoundBorder(BorderFactory.createTitledBorder("Details"), BorderFactory.createEmptyBorder(5, 5, 5, 5)));
            JPanel panControls = new JPanel(new BorderLayout());
            panControls.setBorder(BorderFactory.createEmptyBorder(5, 0, 5, 0));
    
            panInput.add(panInputLabels, BorderLayout.LINE_START);
            panInput.add(panInputFields, BorderLayout.CENTER);
            panProgress.add(panProgressLabels, BorderLayout.LINE_START);
            panProgress.add(panProgressBars, BorderLayout.CENTER);
            panDetails.add(scrollPane, BorderLayout.CENTER);
            panControls.add(btnCopy, BorderLayout.CENTER);
    
            JPanel panUpper = new JPanel(new BorderLayout());
            panUpper.add(panInput, BorderLayout.NORTH);
            panUpper.add(panProgress, BorderLayout.SOUTH);
    
            contentPane.add(panUpper, BorderLayout.NORTH);
            contentPane.add(panDetails, BorderLayout.CENTER);
            contentPane.add(panControls, BorderLayout.SOUTH);
    
            pack();
            setLocationRelativeTo(null);
        }
    
        @Override
        public void actionPerformed(ActionEvent e)
        {
            if("Copy".equals(btnCopy.getText()))
            {
                File source = new File(txtSource.getText());
                File target = new File(txtTarget.getText());
    
                if(!source.exists())
                {
                    JOptionPane.showMessageDialog(this, "The source file/directory does not exist!", "ERROR", JOptionPane.ERROR_MESSAGE);
                    return;
                }
    
                if(!target.exists() && source.isDirectory()) target.mkdirs();
                else
                {
                    int option = JOptionPane.showConfirmDialog(this, "The target file/directory already exists, do you want to overwrite it?", "Overwrite the target", JOptionPane.YES_NO_OPTION);
                    if(option != JOptionPane.YES_OPTION) return;
                }
    
                task = this.new CopyTask(source, target);
                task.addPropertyChangeListener(this);
                task.execute();
    
                btnCopy.setText("Cancel");
            }
            else if("Cancel".equals(btnCopy.getText()))
            {
                task.cancel(true);
                btnCopy.setText("Copy");
            }
        }
    
        @Override
        public void propertyChange(PropertyChangeEvent evt)
        {
            if("progress".equals(evt.getPropertyName()))
            {
                int progress = (Integer) evt.getNewValue();
                progressAll.setValue(progress);
            }
        }
    
        public static void main(String[] args)
        {
            SwingUtilities.invokeLater(new Runnable()
            {   
                @Override
                public void run()
                {
                    new FileCopierUtility().setVisible(true);
                }
            });
        }
    
        class CopyTask extends SwingWorker<Void, Integer>
        {
            private File source;
            private File target;
            private long totalBytes = 0L;
            private long copiedBytes = 0L;
    
            public CopyTask(File source, File target)
            {
                this.source = source;
                this.target = target;
    
                progressAll.setValue(0);
                progressCurrent.setValue(0);
            }
    
            @Override
            public Void doInBackground() throws Exception
            {
                txtDetails.append("Retrieving some info ... ");
                retrieveTotalBytes(source);
                txtDetails.append("Done!\n");
    
                copyFiles(source, target);
                return null;
            }
    
            @Override
            public void process(List<Integer> chunks)
            {
                for(int i : chunks)
                {
                    progressCurrent.setValue(i);
                }
            }
    
            @Override
            public void done()
            {
                setProgress(100);
                btnCopy.setText("Copy");
            }
    
            private void retrieveTotalBytes(File sourceFile)
            {
                File[] files = sourceFile.listFiles();
                for(File file : files)
                {
                    if(file.isDirectory()) retrieveTotalBytes(file);
                    else totalBytes += file.length();
                }
            }
    
            private void copyFiles(File sourceFile, File targetFile) throws IOException
            {
                if(sourceFile.isDirectory())
                {
                    if(!targetFile.exists()) targetFile.mkdirs();
    
                    String[] filePaths = sourceFile.list();
    
                    for(String filePath : filePaths)
                    {
                        File srcFile = new File(sourceFile, filePath);
                        File destFile = new File(targetFile, filePath);
    
                        copyFiles(srcFile, destFile);
                    }
                }
                else
                {
                    txtDetails.append("Copying " + sourceFile.getAbsolutePath() + " ... ");
    
                    BufferedInputStream bis = new BufferedInputStream(new FileInputStream(sourceFile));
                    BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(targetFile));
    
                    long fileBytes = sourceFile.length();
                    long soFar = 0L;
    
                    int theByte;
    
                    while((theByte = bis.read()) != -1)
                    {
                        bos.write(theByte);
    
                        setProgress((int) (copiedBytes++ * 100 / totalBytes));
                        publish((int) (soFar++ * 100 / fileBytes));
                    }
    
                    bis.close();
                    bos.close();
    
                    publish(100);
    
                    txtDetails.append("Done!\n");
                }
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to create a bunch of directories/subdirectories that I can copy files
I have this code below to copy VBA codes from one word document to
Recursive function for copy of multilevel folder is not working. I have a code
I have the code below (but doesn't work) .. i need to wait till
Hello I have the code below that for some reason is not working: I
I have the below Perl code to make a copy of a binary file
I have tried using the code below to display ImageIcons in JTable. But when
My question is, in the below code, can I be sure that the instance
I have the code below that should copy the file index.php to the directory
I have below code: <a href=# id=@item.Id name=vote ><img src=/Content/images/021.png style=float:left alt= /></a> which

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.