欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

VBS教程:属性-ShortPath 属性

程序员文章站 2022-04-29 09:23:18
shortpath 属性返回按照 8.3 命名约定转换的短路径名。object.shortpath object...

shortpath 属性

返回按照 8.3 命名约定转换的短路径名。

object.shortpath

object 应为 file 或 folder 对象的名称。

说明

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

function showshortpath(filespec)    dim fso, f, s    set fso = createobject("scripting.filesystemobject")    set f = fso.getfile(filespec)    s = ucase(f.name) & "<br>"的短路径名"    s = s & "是:" & f.shortpath showshortpath = s end function