Microsoft® Visual Basic® Scripting Edition Path 属性 |
语言参考 版本 3 |
返回指定文件、文件夹或驱动器的路径。
object.Pathobject 应为 File、Folder 或 Drive 对象的名称。
对于驱动器,路径不包含根目录。例如,C 驱动器的路径是 C:,而不是 C:\。以下代码举例说明如何使用 Path 属性:
Sub ShowFileAccessInfo(filespec) Dim fs, d, f, s Set fs = CreateObject("Scripting.FileSystemObject") Set f = fs.GetFile(filespec) s = UCase(f.Path) & vbCrLf s = s & "创建时间: " & f.DateCreated & vbCrLf s = s & "上次访问时间: " & f.DateLastAccessed & vbCrLf s = s & "上次修改时间: " & f.DateLastModified MsgBox s, 0, "文件访问信息" End Sub