I need to create a folder on my remote machine. For testing purpose, I am trying to create folder on my own machine using my machine IP address. My Ubuntu machine IP address is XX.X.X.XX. I want to create a folder called E book on my home directory using the following java code snippet. But the following doesn't create a folder. Please help.
boolean folder = new java.io.File("//XX.X.X.XX/home/EBook").mkdirs();
System.out.println(folder);