add a trailing slash in path if not exists java ADD A TRAILING SLASH IN PATH IF NOT EXISTS String path = "/path/to/folder"; if(path.charAt(path.length()-1)!=File.separatorChar){ path += File.separator; } 1234 String path = "/path/to/folder";if(path.charAt(path.length()-1)!=File.separatorChar){ path += File.separator;}