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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T06:18:05+00:00 2026-05-29T06:18:05+00:00

In java, how can we open a separate folder (e.g. c:) for user on

  • 0

In java, how can we open a separate folder (e.g. c:) for user on click of a button, e.g like the way ” locate this file on disk” or “open containing folder” does when we download a file and we want to know where it was saved. The goal is to save user’s time to open a browser and locate the file on disk.
Thanks ( image below is an example from what firefox does)
enter image description here

I got the answer:
Here is what worked for me in Windows 7:

        File foler = new File("C:\\"); // path to the directory to be opened
        Desktop desktop = null;
        if (Desktop.isDesktopSupported()) {
        desktop = Desktop.getDesktop();
        }

        try {
        desktop.open(foler);
        } catch (IOException e) {
        }

Thanks to @AlexS

  • 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-05-29T06:18:05+00:00Added an answer on May 29, 2026 at 6:18 am

    I assume you have a file. With java.awt.Desktop you can use something like this:

    public static void openContaiingFolder(File file) {
        String absoluteFilePath = file.getAbsolutePath();
        File folder = new File(absoluteFilePath.substring(0, absoluteFilePath.lastIndexOf(File.separator)));
        openFolder(folder);
    }
    
    public static void openFolder(File folder) {
        if (Desktop.isDesktopSupported()) {
            Desktop.getDesktop().open(folder);
        }
    }
    

    Be awrae that if you call this with a File that is no directory at least Windows will try to open the file with the default program for the filetype.

    But I don’t know on which platforms this is supported.

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

Sidebar

Related Questions

is there functionality in java to open the containing folder of a file across
What is the maximum file size 32 bit java can access? Is this architecture
In flash you can open a file on the user's computer. In flash 9
how can I open a file from within a java program with a custom
Do any open source or 'free' libraries exist for Java where i can perform
With iText I can use Java to open a pdf and write it. If
In Java can I create a URI for a file located locally in the
In Java you can do File.listFiles() and receive all of the files in a
Short and sweet : I'd like to be able to run another .java file,
I assume that you can open images from your resources folder with Intent.ACTION_VIEW ?

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.