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 9186621
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T19:34:27+00:00 2026-06-17T19:34:27+00:00

As the title states, is there a way to select multiple directories at once

  • 0

As the title states, is there a way to select multiple directories at once (all sub-directories immediately within a primary directory) with JFileChooser so I don’t have to re-open the file chooser window for each directory?

  • 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-17T19:34:28+00:00Added an answer on June 17, 2026 at 7:34 pm

    Once again I’ve solved my own question after asking it.

    The thing that was preventing me from getting it to work previously was I was using the check for multi-select rather than the set for multi-select, and apparently was using that wrong as well as I kept getting an error. Anyway, the working version is below:

    class AddDirectory implements ActionListener {
        public void actionPerformed(ActionEvent ae) {
            File[] theDir = null;
            theDir = selectDir();
            if(theDir != null) {
                for(File z : theDir) {
                    String[] curRow = { z.toString(), "Waiting"};
                    dlm.addRow(curRow);
                }
            }
            return;
        }   
        private File[] selectDir() {
            JFileChooser fileChooser = new JFileChooser(lastDir);
            fileChooser.setMultiSelectionEnabled(true);
            fileChooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
            int showOpenDialog = fileChooser.showOpenDialog(null);
            if (showOpenDialog != JFileChooser.APPROVE_OPTION) {
                return null;
            }
            File[] uploadDir = fileChooser.getSelectedFiles();
            lastDir = new File(uploadDir[uploadDir.length-1].getParent());
            return uploadDir;
        }
    }
    

    Once I get the directories, they’re loaded into a JTable to be modified before running the rest of my code on them.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

The title pretty much states it. Is there a way for me to unzip
Like the title states, does anyone out there have a clear way to implement
As the title states, is there a way to prevent extra elements from showing
As the title states, I need to relace all occurrences of the $ sign
As stated in the title, is there a way, using regular expressions, to match
As the title states, we're looking for a way to access a .NET 3.5
as the title states, I am trying to query multiple mySQL tables in the
Just as the title states, is there a jQuery plugin effect that will allow
As the title states, I am using devise. I came upon this link that
As the title states, if I don't clean my project before building, neither the

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.