Tôi nghĩ bạn muốn ngày sửa đổi. Nếu có, hãy xem điều này
Debug.Print FileDateTime("C:\Sample.txt")
Định dạng ngày và giờ được hiển thị dựa trên cài đặt ngôn ngữ của hệ thống.
Sửa
Sử dụng FileSystemObject
Option Explicit
Sub Sample()
Dim oFS As Object
Dim sFile As String
sFile = "C:\MyFile.txt"
Set oFS = CreateObject("Scripting.FileSystemObject")
'~~> Created Date
Debug.Print "Created Date : "; oFS.GetFile(sFile).DateCreated
'~~> Modified Date
Debug.Print "Modified Date : "; oFS.GetFile(sFile).Datelastmodified
Set oFS = Nothing
End Sub
Nguồn
2012-05-30 20:13:56
Yup có được :) BTW mà timestamp Chúng ta đang nói về? Ngày tạo hoặc ngày sửa đổi? –