I need to make a directory if not exist. I've wrote codes below
File backupDir = new File("//test");
// if (!backupDir.exists())
backupDir.mkdirs();
I've previously used it without any problem, But now not works and I have no errors! What is the problem? Have you any idea to solve this?
Thanks in advance