how to extract list of file names and created date

2019-09-20 11:04发布

问题:

In Windows command prompt, I'm trying to list only path, file name and created date, of all files including in a folder and its sub folders. Like:

E:\>dir /s /b>LIST_FILES.TXT

Problem is that I don't know how to show created date of file. Is it possible?

回答1:

You can use dir /T:C filename or dir /T:C if you want it recursive.



标签: cmd