Java File separator, separatorChar, pathSeparator, pathSeparatorChar
URL: https://www.progressiverobot.com/java-file-separator-separatorchar-pathseparator-pathseparatorchar/ java.io.File class contains four static separator variables. Here we will learn about them and when to use it. File.separator: Platform dependent default name-separator character as String. For windows, it's '\' and for unix it's '/'. File.separatorChar: Same as separator but it's char. File.pathSeparator: Platform dependent variable for path-separator. For example PATH or CLASSPATH […]