Tambuliko la ASP ShortPath

Umbali na Matumizi

Tambuliko la ShortPath linatoa nafasi ya faili au kikuu kwa nafasi ya (8.3 naming convention).

Insha

FileObject.ShortPath
FolderObject.ShortPath

Mfano

Mfano wa Kikuu ya File

<%
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.GetFile("c:\asp_test_web\hitcounterfile.txt")
Response.Write("Nafasi: " & f.Path)
Response.Write("
ShortPath: " & f.ShortPath) set f=nothing set fs=nothing %>

输出:

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

Mfano wa Kikuu ya Folder

<%
dim fs,fo
set fs=Server.CreateObject("Scripting.FileSystemObject")
set fo=fs.GetFolder("c:\asp_test_web")
Response.Write("Nafasi: " & fo.Path)
Response.Write("
ShortPath: " & fo.ShortPath) set fo=nothing set fs=nothing %>

输出:

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