Yeah, it's not really a bug. It's more related to java in general.
The backslash is an escape character, see: http://docs.oracle.com/javase/tutorial/java/data/characters.html
So most of the time you would need to use forward slashes or double backslashes for file paths.
The backslash is an escape character, see: http://docs.oracle.com/javase/tutorial/java/data/characters.html
So most of the time you would need to use forward slashes or double backslashes for file paths.