From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: parozusa@web.de Newsgroups: gmane.emacs.help Subject: Re: recursively directory listing in dired way. Date: Thu, 20 Nov 2008 08:23:46 +0100 Organization: Arcor Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1227166897 4952 80.91.229.12 (20 Nov 2008 07:41:37 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 20 Nov 2008 07:41:37 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Nov 20 08:42:39 2008 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1L34BS-00053t-Qd for geh-help-gnu-emacs@m.gmane.org; Thu, 20 Nov 2008 08:42:39 +0100 Original-Received: from localhost ([127.0.0.1]:53491 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1L34AK-00079J-07 for geh-help-gnu-emacs@m.gmane.org; Thu, 20 Nov 2008 02:41:28 -0500 Original-Path: news.stanford.edu!headwall.stanford.edu!newshub.sdsu.edu!feeder.erje.net!newsfeed01.sul.t-online.de!t-online.de!newsfeed.arcor.de!newsspool2.arcor-online.net!news.arcor.de.POSTED!not-for-mail Original-Newsgroups: gnu.emacs.help User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (windows-nt) Cancel-Lock: sha1:bX6/9uVx+tWIMadhwPh57FlWgi4= Original-Lines: 31 Original-NNTP-Posting-Date: 20 Nov 2008 08:24:31 CET Original-NNTP-Posting-Host: c097f72a.newsspool4.arcor-online.net Original-X-Trace: DXC=jjJN<2]Zkll9kIfcjg:0fd4IUK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:59952 Archived-At: "Anand S. Dhankshirur" writes: > I have installed 22.3 version of emacs in my system. > I want to list all the subdirectories and its contents of a directory > recursively in a dired buffer. > So that i can go to that file. > (running ls -lR shell command lists all the contents recursively but > not in dired way!) > I want to list all the contents in dired way. > How to do that? > Regards, > Anand Hi, add the 'R' option to the underlying ls command by typing "1 s" in the dired buffer of the top level directory: s runs the command dired-sort-toggle-or-edit, which is an interactive compiled Lisp function in `dired.el'. It is bound to s. (dired-sort-toggle-or-edit &optional arg) Toggle between sort by date/name and refresh the dired buffer. With a prefix argument you can edit the current listing switches instead. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Martin