How can I determine a file's creation date in Windows?

后端 未结 4 1845
一个人的身影
一个人的身影 2021-01-13 02:08

How can I get the date of when a file was created? I am running Windows.

4条回答
  •  太阳男子
    2021-01-13 02:56

    Unix systems don't store the time of file creation. Unix systems do store the last time the file was read (if atime is turned on for that specific file system; sometimes it is disabled for speed), the last time the file was modified (mtime), and the last time the file's metadata changed (ctime).

    See the stat(2) manpage for details on using it.

提交回复
热议问题