Windows: How to list all the files in directory and sub directory with full path and creation date
I am using the belo开发者_如何学运维w command but its giving only the full path of the files and not the creation date.
Is there any way I can get the full path with creation date also.
dir /s /b
Try this:
dir /s /T:C
I got it using dir /?
精彩评论