ویژگی ShortPath ASP

تعریف و استفاده

ویژگی ShortPath برای بازگرداندن مسیر کوتاه یک فایل یا پوشه مشخص استفاده می‌شود. (8.3 توافق‌نامه‌های نام فایل).

نحوه استفاده:

FileObject.ShortPath
FolderObject.ShortPath

مثال برای File Object

<%
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.GetFile("c:\asp_test_web\hitcounterfile.txt")
Response.Write("مسیر: " & 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

مثال برای Folder Object

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

خروجی:

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