# File lib/fusefs/metadir.rb, line 56
        def contents(path)
            pathmethod(:contents,path) do | filename |
                if !filename
                    (@files.keys + @subdirs.keys).sort.uniq
                else
                    @subdirs[filename].contents("/")
                end
            end
        end