I'm trying to clean up a network folder and to do so I want to get the last modified and who created for the directory. So far I've found:
dir \\server\share /Q
and that works great showing the owner but it sorts the file or sub directory alphabetically. How can I get the last modified and then sort by that?
And is there a way to export each column to a CSV file? I tried:
echo > folder_owners.csv
echo >> folder_owners.csv
dir \\server\share /Q >> folder_owners.csv
but that seems to randomly seperate things, and only into 1 or 2 columns.
I have found this post but I don't feel like it's exactly what I'm looking for.
Any help would be greatly appreciated.
Use:
To separate columns,
FOR
must be used:Note this will also parse footer...