In Windows I want to list the files from the drive in all the subfolders with the following attributes
- From all the subfolders
- File name
- File Creation date
- File Last Modified date
- User name of last modifier of the file
I use the following command:
DIR /S /O:NS /T:CAW
and
/s gives all files in subfolders
/O:N gives name
/O:S gives file size
/T:C gives creation time
/T:W gives last modified time
My questions:
- Is this the correct way to use the command?
- How should I get the user name who modified/created the content last?