ASP ShortPath 属性

定义和用法

ShortPath 属性用于返回指定的文件或文件夹的短路径 (8.3 命名约定)。

语法:

  1. FileObject.ShortPath
  2. FolderObject.ShortPath

实例

针对 File 对象的例子

  1. <%
  2. dim fs,f
  3. set fs=Server.CreateObject("Scripting.FileSystemObject")
  4. set f=fs.GetFile("c:\asp_test_web\hitcounterfile.txt")
  5. Response.Write("Path: " & f.Path)
  6. Response.Write("<br />ShortPath: " & f.ShortPath)
  7. set f=nothing
  8. set fs=nothing
  9. %>

输出:

  1. Path: C:\asp_test_web\hitcounterfile.txt
  2. ShortPath: C:\ASP_TE~1\HITCOU~1.TXT

针对 Folder 对象的例子

  1. <%
  2. dim fs,fo
  3. set fs=Server.CreateObject("Scripting.FileSystemObject")
  4. set fo=fs.GetFolder("c:\asp_test_web")
  5. Response.Write("Path: " & fo.Path)
  6. Response.Write("<br />ShortPath: " & fo.ShortPath)
  7. set fo=nothing
  8. set fs=nothing
  9. %>

输出:

  1. Path: C:\asp_test_web
  2. ShortPath: C:\ASP_TE~1