脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - VBS - VBS教程:属性-Path 属性

VBS教程:属性-Path 属性

2019-12-02 16:20VBS教程网 VBS

VBS教程:属性-Path 属性

Path 属性

返回指定文件、文件夹或驱动器的路径。

object.Path

object 应为 File、Folder 或 Drive 对象的名称。

说明

对于驱动器,路径不包含根目录。例如,C 驱动器的路径是 C:,而不是 C:\。

以下代码举例说明如何使用 Path 属性:

Function ShowFileAccessInfo(filespec)    Dim fso, d, f, s    Set fso = CreateObject("Scripting.FileSystemObject")    Set f = fso.GetFile(filespec)    s = UCase(f.Path) & "<BR>"    s = s & "创建时间:" & f.DateCreated & "<BR>"    s = s & "上次访问时间:" & f.DateLastAccessed & "<BR>"    s = s & "上次修改时间:" & f.DateLastModified  ShowFileAccessInfo = sEnd Function

延伸 · 阅读

精彩推荐