tags:

views:

28

answers:

1

We are converting apps to Android from .NET

Is there a Java equivalent of the .NET Path.Combine() function?

Currently we check the / on each folder etc before building paths.

+1  A: 
import java.io.File;

// ...

public static String pathCombine(String path1, String path2)
{
    File parent = new File(path1);
    File child = new File(parent, path2);
    return child.getPath();
}
LukeH