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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T09:44:41+00:00 2026-05-25T09:44:41+00:00

Imagine I have a ‘base’ path object, denoting a directory, and a ‘relative’ path

  • 0

Imagine I have a ‘base’ path object, denoting a directory, and a ‘relative’ path object denoting some file within the base.

I would expect that code to look somewhat like

AbsolutePath base = new AbsolutePath("/tmp/adirectory");
RelativePath relativeFilePath = new RelativePath("filex.txt");
AbsolutePath absoluteFile = base.append( relativeFilePath );

But in the Java API (which I don’t yet know very well) I find only File, with which I can do nothing better than

File base = new File("/tmp/adirectory");
File relativeFilePath = new File("filex.txt");
File absoluteFile = base.toString() 
                  + File.separator 
                  + relativeFilePath.toString();

Is there a better way?

  • 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-25T09:44:42+00:00Added an answer on May 25, 2026 at 9:44 am

    The closest you can get with java.io.File is the File(File, String) constructor:

    File base = ...;
    File relative = ...;
    File combined = new File(base, relative.toString());
    

    If you can use the Path class introduced in Java 7, then you can use the resolve() method, which does exactly what you want:

    Path base = ...;
    Path relative = ...;
    Path combined = base.resolve(relative);
    

    Please note that if base is not an absolute path, then combined won’t be absolute either! If you need an absolute path, then for a File you’d use getAbsoluteFile() and for a Path you’d use toAbsoutePath().

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

Sidebar

Related Questions

Imagine I have an input file,an output file and a file containing some elisp
Imagine we have a program trying to write to a particular file, but failing.
Imagine I have the folling XML file: <a>before<b>middle</b>after</a> I want to convert it into
Imagine you have a big file stored in hdtf which contains structured data. Now
imagine i have NSData object and i have 2 options to fill that up.
Imagine I have a table with two columns, a primary key and some data.
Imagine I have one common functionality: series and number (string and integer) of some
Imagine I have two C# files. The first file, Class1.cs contains namespace CrossReferenceCheckingTest {
Imagine you have a file sink(example.txt) data.frame(a = runif(10), b = runif(10), c =
Imagine I have a simple data file called 'test_gnu.txt' as follow: 0.32,0.116,0.398989898989899 0.34,0.010,0.01212121212121212 0.36,0.035,0.11313131313131312

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.