/** * combinePaths () * * Combiner deux chemins. * * @return String : chemin résultant */ import java.io.File; String combinePaths (String parent, String child) { File file = new File (parent, child); return file.getPath (); }