T
Tim Tuples
Is there a tool (preferable a command line tool) which lists all files in a subdirectory tree
which are writable?
Tim
which are writable?
Tim
Tim Tuples said:Is there a tool (preferable a command line tool) which lists all files in
a subdirectory tree
which are writable?
Tim
Doug Kanter said:Tim Tuples said:Is there a tool (preferable a command line tool) which lists all files in
a subdirectory tree
which are writable?
Tim
The DIR command:
DIR [drive:][path][filename] [/A[[:]attributes]] [/B] [/C] [/D] [/L] [/N]
[/O[[:]sortorder]] [/P] [/Q] [/S] [/T[[:]timefield]] [/W] [/X] [/4]
[drive:][path][filename]
Specifies drive, directory, and/or files to list.
/A Displays files with specified attributes.
attributes D Directories R Read-only files
H Hidden files A Files ready for archiving
S System files - Prefix meaning not
Looks like the "prefix meaning not" option is the key to what you're
trying to do. To see all options for the dir command type this at a
command line:
DIR /?
As an alternative, view the directory in Explorer. Right click the column
headings at the top and enable the Attributes column. Then, sort on that
column to group the files by attribute.
Tim said:Is there a tool (preferable a command line tool) which lists all files in a subdirectory tree
which are writable?
Tim
Armin Freiberg said:I suggest:
dir /S/A-D-R/B
(leave out directories and Read-only-files)
Armin
Doug Kanter said:Tim Tuples said:Is there a tool (preferable a command line tool) which lists all files in
a subdirectory tree
which are writable?
Tim
The DIR command:
DIR [drive:][path][filename] [/A[[:]attributes]] [/B] [/C] [/D] [/L] [/N]
[/O[[:]sortorder]] [/P] [/Q] [/S] [/T[[:]timefield]] [/W] [/X] [/4]
[drive:][path][filename]
Specifies drive, directory, and/or files to list.
/A Displays files with specified attributes.
attributes D Directories R Read-only files
H Hidden files A Files ready for archiving
S System files - Prefix meaning not
Looks like the "prefix meaning not" option is the key to what you're
trying to do. To see all options for the dir command type this at a
command line:
DIR /?
As an alternative, view the directory in Explorer. Right click the column
headings at the top and enable the Attributes column. Then, sort on that
column to group the files by attribute.