返回短路径名,这些短文件名由需要以前的 8.3 文件命名规范的程序使用。
object.ShortPath
object 应为 File 或 Folder 对象。
下面的代码通过一个 File 对象说明了 ShortName 属性的用法:
[JScript] function ShowShortName(filespec) { var fso, f, s; fso = new ActiveXObject("Scripting.FileSystemObject"); f = fso.GetFile(filespec); s = "The short name for " + "" + f.Name; s += "" + "<br>"; s += "is:" + "" +f.ShortName
+ ""; return(s); } [VBScript] Function ShowShortName(filespec) Dim fso, f, s Set fso = CreateObject("Scripting.FileSystemObject") Set f = fso.GetFile(filespec) s = "The short name for " & UCase(f.Name) & "<BR>" s = s & "is:" &f.ShortName
ShowShortName = s End Function
Attributes 属性 | DateCreated 属性 | DateLastAccessed 属性 | DateLastModified 属性 | Drive 属性 | Files 属性 | IsRootFolder 属性 | Name 属性 | ParentFolder 属性 | Path 属性 | ShortName 属性 | Size 属性 | SubFolders 属性 | Type 属性