# File lib/fusefs/pathmapper.rb, line 244
        def node(path)
            path_components = scan_path(path)

            #not actually injecting anything here, we're just following the hash of hashes...
            path_components.inject(@root) { |dir,file|
                break unless dir.files[file]
                dir.files[file]
            }
        end