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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T17:35:41+00:00 2026-05-15T17:35:41+00:00

I am looking to access all files in a local directory in a JBoss

  • 0

I am looking to access all files in a local directory in a JBoss application. I can put the directory anywhere in my war including WEB-INF if necessary. I then want to access each file in the directory sequentially. In a normal application if the directory was in the run location I could do something like:

File f = new File("myDir");
if(f.isDirectory && f.list().length != 0)
{
    for(String fileName : f.list())
    {
        //do Read-Only stuff with fileName
    }
}

I’m looking for a best-practices solution, so if I’m going about this wrong then please point me to the right way to access an unknown set of resources.

  • 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-15T17:35:42+00:00Added an answer on May 15, 2026 at 5:35 pm

    First thing to note: you’re only going to get this to work if you have an exploded WAR, or possibly if the servlet container explodes the WAR for you.

    With that caveat in mind, you could use ServletContext.getRealPath() as your starting point. You’d need to know the name of at least one file in the webapp’s root directory, and go from there:

    String knownFilePath = servletContext.getRealPath("knownFile");
    File webAppRootDir = new File(knownFilePath).getParentFile();
    
    // and then as per the question
    File f = webAppRootDir ;
    if(f.isDirectory && f.list().length != 0)
    {
        for(String fileName : f.list())
        {
            //do Read-Only stuff with fileName
        }
    }
    

    Getting hold of ServletContext is left as an exercise for the reader.

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

Sidebar

Related Questions

I am looking to get access to all HTTP traffic on my machine (my
I want to build a web application (SaaS) that can work both in Online
I’m looking for a possibility to easily access and list all resources loaded after
I have an application that is looking through some files for old data. In
I am looking for a .NET JSON library that I can use to access
I am looking for a simple configuration to serve all files and directories inside
I am looking for a java API to access mainframe remotely. I am looking
I am looking for a way in Microsoft Access to create a temporary table
I am looking for an OSS data access block for using with .Net and
I'm looking for feedback on the Data Access Object design pattern and using it

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.