# File lib/librmpd.rb, line 594
        def files( path = nil )
                if not path.nil?
                        response = send_command "listall \"#{path}\""
                else
                        response = send_command 'listall'
                end

                filter_response response, /\Afile: /i
        end