ASP中相对路径到绝对路径转换的函数代码
来源:爱站网时间:2020-08-28编辑:网友分享
程序开发中我们可以使用很多方法将相对路径转换为绝对路径,但是我不知道是否有bash命令,今天爱站技术频道小编就来讲讲ASP中相对路径到绝对路径转换的函数代码,还不太了解的同学们快点跟着小编学起来吧。
程序开发中我们可以使用很多方法将相对路径转换为绝对路径,但是我不知道是否有bash命令,今天爱站技术频道小编就来讲讲ASP中相对路径到绝对路径转换的函数代码,还不太了解的同学们快点跟着小编学起来吧。
复制代码 代码如下:
'================================================
' 函数名: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
以上就是爱站技术频道小编给大家介绍的ASP中相对路径到绝对路径转换的函数代码,如果大家还有更多的疑问,欢迎继续关注js.aizhan.com,我们也将继续为大家展现更多的内容。