- Jun
- 121
- 0
Hi, Using TCC 11.0048
Is it possible to get a summary of the size of top-level subdirectories using DIR (or any other TCC command)?
That means if I have
M:\UserData
M:\UserData\Sub1
M:\UserData\Sub2
M:\UserData\Sub3
I am interested in the space Sub1 occupies (and all its subdirectories and files recursively) but I am not interested in listing any files or subdirectories below Sub1.
This is so I can get an overview of where the space goes under
M:\UserData
I thought something like
for /D %a in (*.*) do dir %a /s /u2 /K /M
but I keep getting
TCC: (Sys) The system cannot find the file specified.
and 0 bytes
How can I improve this?
Thanks
Stephen
Is it possible to get a summary of the size of top-level subdirectories using DIR (or any other TCC command)?
That means if I have
M:\UserData
M:\UserData\Sub1
M:\UserData\Sub2
M:\UserData\Sub3
I am interested in the space Sub1 occupies (and all its subdirectories and files recursively) but I am not interested in listing any files or subdirectories below Sub1.
This is so I can get an overview of where the space goes under
M:\UserData
I thought something like
for /D %a in (*.*) do dir %a /s /u2 /K /M
but I keep getting
TCC: (Sys) The system cannot find the file specified.
and 0 bytes
How can I improve this?
Thanks
Stephen