I have a directory tree that is being provided in the form of a flat text file.
What I would like to do is create a hash out of this information. (note: this file could be of any length and have a variable directory depth)
My initial thought was to split each line into an array, and then use the information in node_id=196317 to turn the array into the hash. But this seems less than optimal.