# File lib/fuse/rfusefs-fuse.rb, line 405
      def rmdir(ctx,path)
        return wrap_context(ctx,__method__,path) if ctx

        unless @root.can_rmdir?(path)
          raise Errno::EACCES.new(path)
        end
        @root.rmdir(path)
      end