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

  • Home
  • SEARCH
  • 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 8772743
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T18:06:28+00:00 2026-06-13T18:06:28+00:00

In Java, I have a File object representing a folder: String folderName = /home/vektor/folder;

  • 0

In Java, I have a File object representing a folder:

String folderName = "/home/vektor/folder";
File folder = new File(folderName);

Now I want to create another File representing a file in this folder. I want to avoid doing a string concatenation like this:

String fileName = "test.txt";
File file = new File(folderName + "/" + fileName);

Because if I go deeper in creating this structure, I will come up with something like this:

File deepFile = new File(folderName + "/" + anotherFolderName + ... + "/" + fileName);

I would instead like to do something like

File betterFile = folder.createUnder(fileName);

Or even:

File otherFile = SomeFileUtils.createFileInFolder(folder, fileName);

Do you know of such solution?

Note: It’s quite OK to use “/” because Java will translate it to “\” for Windows, but it is not clean – I should use something like "file.separator" from System.getProperties().

  • 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-13T18:06:30+00:00Added an answer on June 13, 2026 at 6:06 pm

    Look at the Javadoc for File and you will see that the constructor takes a File object as parent.

    Use the following form:

    File deepFile = new File(folder, fileName);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Java project in Eclipse IDE. If I create new File object.
I have a working file rename java tool, now I want to add an
I have file contents in a java string variable, which I want to convert
I have two Java.io.File objects file1 and file2. I want to copy the contents
I have a file in Java FileInputStream in = null; try{ in = new
I have a Font object in Java for a font file. I need to
I have a file containing java objects , wrote with this code: from(somewhere).process(new Processor()
I have File object in Java which is a directory path: C:\foo\foo\bar ...and I
Is there any way to create a java.io.File object from an java.io.InputStream ? My
I have tried multiple ways to create this zip file in Java/Groovy. The first

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.