Extracting parts of paths in Java

13,095

Solution 1

Not yet pretty, however, you guess the direction:

File parent = file.getParentFile();
File parent2 = parent.getParentFile();
parent2.getName() + System.getProperty("path.separator") + parent.getName()

Another option:

final int len = path.getNameCount();
path.subpath(len - 3, len - 1)

Edit: You should either check len or catch the IllegalArgumentException to make your code more robust.

Solution 2

The methods getNameCount() and getName(int index) of java.nio.Path should help you:

File f = new File("/home/Dara/Desktop/foo/bar/baz/qux/file.txt");
Path p = f.toPath();
int pathElements = p.getNameCount();
String topOne = p.getName(pathElements-2).toString();
String topTwo = p.getName(pathElements-3).toString();

Please be aware, that the result of getNameCount() should be checked for validity, before using it as an index for getName().

Solution 3

Using subpath and getNameCount.

    Path myPath = Paths.get("/home/Dara/Desktop/foo/bar/baz/qux/file.txt");
    Path subPath = myPath.subpath(myPath.getNameCount() -3, myPath.getNameCount() -1);

Solution 4

You could just split the String or use a StringTokenizer.

Solution 5

File.getParent() will remove the filename.

And the path separator you will get with: System.getProperty("file.separator").

Then you can use String.split() to get each part of the path.

Share:
13,095
Dara Java
Author by

Dara Java

Updated on June 14, 2022

Comments

  • Dara Java
    Dara Java almost 2 years

    I have a file path like this:

    /home/Dara/Desktop/foo/bar/baz/qux/file.txt
    

    In Java, I would like to be able to get the top two folders. Ie. baz/qux regardless of file path length or operating system (File path separators such as / : and \). I have tried to use the subpath() method in Paths but I can't seem to find a generic way to get the length of the file path.

  • Dara Java
    Dara Java about 11 years
    True, I am doing that now but I would be more comfortable using a more generic way.
  • Bhavik Shah
    Bhavik Shah about 11 years
    what do you mean by more generic way?