I have a LinkedList of some type <Structure>. While looping through directories, i have some folders that i read it. I dynamically want to create the these LinkedList with the name of the read directory.
i.e. If directory read is Kitchen or Lobby. I want:
LinkedList<Structure> Kitchen = new LinkedList<Structure>();
LinkedList<Strucutre> Lobby = new LinkedList<Strucure>();
Structure object has (String, ImageIcon, ImageIcon, ImageIcon)
The question here is to name the LinkedList based on the names received by reading directories.
URL url = getClass().getResource("/path/to/directory/");
File file = new File(url.getPath() + "/");
File[] directories = file.listFiles();
for (int i = 0; i < directories.length; i++) {
if (directories[i].isDirectory()) {
// if directory then create LinkedList with that name
}
}