I need to create a folder structure using java code. I have tried this:
new File("G:\a\b\c").mkdirs();
But how can I make files inside "a" folder or create another tree structure like "G:\a\m\k". I basically need to create a complete project structure just like eclipse does using "New Wizard".