Simple way to show all files/folders with dir

Discussion forum for all Windows batch related topics.

Moderator: DosItHelp

Post Reply
Message
Author
SirJosh3917
Posts: 36
Joined: 02 May 2016 18:59

Simple way to show all files/folders with dir

#1 Post by SirJosh3917 » 28 Nov 2016 14:51

Code: Select all

dir /b /s /a:

I'd just think to share my findings as I wanted to show all visible directories, visible files, invisible directories and invisible files.
Tell me if you found this useful.

Compo
Posts: 600
Joined: 21 Mar 2014 08:50

Re: Simple way to show all files/folders with dir

#2 Post by Compo » 28 Nov 2016 14:57

It's already well known.

Code: Select all

DIR/B/S/A

ShadowThief
Expert
Posts: 1166
Joined: 06 Sep 2013 21:28
Location: Virginia, United States

Re: Simple way to show all files/folders with dir

#3 Post by ShadowThief » 28 Nov 2016 22:09

Commendable enthusiasm, but for future reference, if it's mentioned in the output of <command> /? we already know about it.

Post Reply