服务器之家

服务器之家 > 正文

asp中将相对路径转换为绝对路径的函数代码

时间:2019-08-28 12:19     来源/作者:服务器之家

代码如下:


'================================================ 
' 函数名:ChkMapPath 
' 作 用:相对路径转换为绝对路径 
' 参 数:strPath ----原路径 
' 返回值:绝对路径 
'================================================ 
Function ChkMapPath(ByVal strPath) 
Dim fullPath 
strPath = Replace(Replace(Trim(strPath), "/", "\"), "\\", "\") 

If strPath = "" Then strPath = "." 
If InStr(strPath,":\") = 0 Then 
fullPath = Server.MapPath(strPath) 
Else 
strPath = Replace(strPath,"..\","") 
fullPath = Trim(strPath) 
If Right(fullPath, 1) = "\" Then 
fullPath = Left(fullPath, Len(fullPath) - 1) 
End If 
End If 
ChkMapPath = fullPath 
End Function 

相关文章

热门资讯

华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情 2019-06-22
玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分
玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分 2019-06-21
抖音撒撒累累是什么歌 撒撒累累张艺兴歌曲名字
抖音撒撒累累是什么歌 撒撒累累张艺兴歌曲名字 2019-06-05
叠猫猫队长可以退出吗 叠猫猫队长怎么换队伍
叠猫猫队长可以退出吗 叠猫猫队长怎么换队伍 2019-06-05
超A是什么意思 你好a表达的是什么
超A是什么意思 你好a表达的是什么 2019-06-06
返回顶部