How can I list all the fils in a folder by permissions

InorganicMatter

[H]F Junkie
Joined
Oct 19, 2004
Messages
15,461
I've got a folder with a ton of files in it. I need some way to list all the files in the folder that are read-only, and then list all the ones that are not read-only. Using Vista Ultimate.
 
dir /ar

and to dump those filenames to a text file:

dir /ar > readonlyfiles.txt
 
Back
Top