# File lib/fuse/rfusefs-fuse.rb, line 143 def readdirreaddir(ctx,path,filler,offset,ffi) return wrap_context(ctx,__method__,path,filler,offset,ffi) if ctx #Always have "." and ".." filler.push(".",nil,0) filler.push("..",nil,0) files = @root.contents(path) files.each do | filename | filler.push(filename,nil,0) end end