vba 如何获取文件时间
时间: 2023-07-18 15:03:33 浏览: 1353
Vb修改文件的创建时间_src.rar
你可以使用 VBA 的 FileDateTime 函数来获取文件的最后修改时间。这个函数需要一个文件路径作为输入参数,并返回一个日期/时间值,表示该文件的最后修改时间。
例如,下面的代码演示了如何使用 FileDateTime 函数获取指定文件的最后修改时间:
```
Sub GetFileTime()
Dim filePath As String
Dim fileTime As Date
filePath = "C:\Users\JohnDoe\Documents\test.txt"
fileTime = FileDateTime(filePath)
MsgBox "The last modified time of " & filePath & " is " & fileTime
End Sub
```
运行这个宏后,会弹出一个消息框,显示指定文件的最后修改时间。请注意,要替换 filePath 变量的值为你要查询的文件路径。
阅读全文