ASP ShortPath అంశం
నిర్వచనం మరియు వినియోగం
ShortPath అంశం ప్రియింట్ చేసే ఫైల్ లేదా ఫోల్డర్ యొక్క లఘువాకారపు పథాను (8.3 నామకరణ సంబంధిత నిబంధనలు) అందిస్తుంది.
సంకేతం:
FileObject.ShortPath FolderObject.ShortPath
ప్రతిమాత్రము
ఫైల్ ఆబ్జెక్ట్ కోసం ఉదాహరణ
<% dim fs,f set fs=Server.CreateObject("Scripting.FileSystemObject") set f=fs.GetFile("c:\asp_test_web\hitcounterfile.txt") Response.Write("Path: " & f.Path) Response.Write("<br />ShortPath: " & f.ShortPath) set f=nothing set fs=nothing %>
అవుట్పుట్:
Path: C:\asp_test_web\hitcounterfile.txt ShortPath: C:\ASP_TE~1\HITCOU~1.TXT
ఫోల్డర్ ఆబ్జెక్ట్ కోసం ఉదాహరణ
<% dim fs,fo set fs=Server.CreateObject("Scripting.FileSystemObject") set fo=fs.GetFolder("c:\asp_test_web") Response.Write("Path: " & fo.Path) Response.Write("<br />ShortPath: " & fo.ShortPath) set fo=nothing set fs=nothing %>
అవుట్పుట్:
Path: C:\asp_test_web ShortPath: C:\ASP_TE~1