What is the difference between using File.separator and a normal / in a Java Path-String?
File.separator
/
In contrast to double backslash \\\\
\\\\
If you are using Java 7, checkout Path.resolve() and Paths.get().