Function: dired-mark-subdir-files

dired-mark-subdir-files is an autoloaded, interactive and byte-compiled function defined in dired-aux.el.gz.

Signature

(dired-mark-subdir-files)

Documentation

Mark all files except . and .. in current subdirectory.

If the Dired buffer shows multiple directories, this command marks the files listed in the subdirectory that point is in.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/dired-aux.el.gz
;;;###autoload
(defun dired-mark-subdir-files ()
  "Mark all files except `.' and `..' in current subdirectory.
If the Dired buffer shows multiple directories, this command
marks the files listed in the subdirectory that point is in."
  (interactive)
  (let ((p-min (dired-subdir-min)))
    (dired-mark-files-in-region p-min (dired-subdir-max))))