7172737475767778798081
DirectoryNode dir = baseDir; for(int i=0; i<path.length-1; i++) { try { dir = (DirectoryNode)dir.getEntry(path[i]); } catch(FileNotFoundException e) { dir.createDirectory(path[i]); } } // Update the byte array with the latest data generateData();
7071727374757677787980