Combines the two paths a and b by adding a / between them.
a
b
static String combinePath(String a, String b) { return "$a/$b"; }