Java Utililty Methods File Path Create

List of utility methods to do File Path Create

Description

The list of methods to do File Path Create are organized into topic(s).

Method

StringfilePathJava(String path)
The file path with '\', is replaced by '/'.
String dev = "";
for (int i = 0; i < path.length(); i++) {
    if (path.charAt(i) == '\\') {
        dev += '/';
    } else {
        dev += path.charAt(i);
return dev;