ACL Export

  • Thread starter Thread starter NETCRAMMER
  • Start date Start date
N

NETCRAMMER

what utility can I use to numerate the number of files/folders along with
the permissions.

thx. in adv.
NET
 
NETCRAMMER said:
what utility can I use to numerate the number of files/folders along
with the permissions.

thx. in adv.
NET

cacls "C:\My Documents" /t

In order to count the number of entries, use something similar to the
solution provided in an earlier post -

[From the command prompt]
for /f %c in ('dir "C:\My Documents" /s/a-d/b ^| find /c /v "UnLiKeLy To
ExIsT"') do set TOTFILES=%c

[Within a script]
for /f %%c in ('dir "C:\My Documents" /s/a-d/b ^| find /c /v "UnLiKeLy
To ExIsT"') do set TOTFILES=%%c

HTH

Dean
 
Back
Top