Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
How to construct a relative path in Java from two absolute paths (or URLs)?

using java, is there method to return the relative path of a file to a given folder?

share|improve this question
What problem would you like to solve with this? I really don't see an useful use case for this in Java code. Is it the inability to figure this yourself? – BalusC Mar 21 '11 at 3:39

marked as duplicate by Steffen Opel, user714965, Ɓukasz Niemier, James Montagne, NULL Oct 22 '12 at 21:32

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 2 down vote accepted

There's no method included with Java to do what you want. Perhaps there's a library somewhere out there that does it (I can't think of any offhand, and Apache Commons IO doesn't appear to have it). You could use this or something like it:

// returns null if file isn't relative to folder
public static String getRelativePath(File file, File folder) {
    String filePath = file.getAbsolutePath();
    String folderPath = folder.getAbsolutePath();
    if (filePath.startsWith(folderPath)) {
        return filePath.substring(folderPath.length() + 1);
    } else {
        return null;
    }
}
share|improve this answer
That would assume the file is somewhere inside that folder. Splitting the path using the path separator would allow you to traverse each subfolder and compare them (as easy as looping in the string array) – Aleadam Mar 21 '11 at 5:36
@Aleadam: subfolders are handled. E.g. if file is /1/2/3/a.txt and folder is /1/2 it'll return 3/a.txt. – WhiteFang34 Mar 21 '11 at 5:41
Yes, but if the file is in /1/4/a.txt, it'll return /4/a.txt, which is wrong. – Aleadam Mar 21 '11 at 14:19
@Aleadam: give it a try yourself, for me getRelativePath(new File("/1/2/3/a.txt"), new File("/1/2")) returns 3/a.txt and getRelativePath(new File("/1/4/a.txt"), new File("/1/2")) returns null. – WhiteFang34 Mar 21 '11 at 16:29

Not the answer you're looking for? Browse other questions tagged or ask your own question.