Function: ange-ftp-directory-files-and-attributes

ange-ftp-directory-files-and-attributes is a byte-compiled function defined in ange-ftp.el.gz.

Signature

(ange-ftp-directory-files-and-attributes DIRECTORY &optional FULL MATCH NOSORT ID-FORMAT COUNT)

Source Code

;; Defined in /usr/src/emacs/lisp/net/ange-ftp.el.gz
(defun ange-ftp-directory-files-and-attributes
  (directory &optional full match nosort id-format count)
  (setq directory (expand-file-name directory))
  (if (ange-ftp-ftp-name directory)
      (mapcar
       (lambda (file)
	 (cons file (file-attributes (expand-file-name file directory))))
       (ange-ftp-directory-files directory full match nosort count))
    (ange-ftp-real-directory-files-and-attributes
     directory full match nosort id-format count)))