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

                build_songs_list response
        end