通过本文主要向大家介绍了shortname,indicatorshortname,disqus shortname,productshortname,shortname是什么意思等相关知识,希望对您有所帮助,也希望大家支持linkedu.com www.linkedu.com
ShortName 属性
返回按照早期 8.3 文件命名约定转换的短文件名。
object.ShortName
object 应为 File 或 Folder 对象的名称。
说明
以下代码举例说明如何使用 ShortName 属性:
</div>Function ShowShortName(filespec) Dim fso, f, s Set fso = CreateObject("Scripting.FileSystemObject") Set f = fso.GetFile(filespec) s = UCase(f.Name) & "<BR>"的短文件名"s = s & "是:" & f.ShortNameShowShortName = sEnd Function

