C#中,用什么方法可以判断一个字符串是不是合法的绝对路径?
C#中,用什么方法可以判断一个字符串是不是合法的绝对路径?求救啊!请写的具体一点,小弟的C#功底很弱!...
C#中,用什么方法可以判断一个字符串是不是合法的绝对路径?
求救啊!请写的具体一点,小弟的C#功底很弱! 展开
求救啊!请写的具体一点,小弟的C#功底很弱! 展开
1个回答
2013-08-08
展开全部
//判断绝对路径
//filepath是文件路径
if(System.IO.File.Exists(filepath))
{
System.Web.HttpContext.Current.Response.Write("<script>alert('文件存在');</script>");
}
else
{
System.Web.HttpContext.Current.Response.Write("<script>alert('文件不存在');</script>");
}
//判断相对路径
if(System.IO.File.Exists(System.Web.HttpContext.Current.Server.MapPath(filepath)))
{
System.Web.HttpContext.Current.Response.Write("<script>alert('文件存在');</script>");
}
else
{
System.Web.HttpContext.Current.Response.Write("<script>alert('文件不存在');</script>");
}
//filepath是文件路径
if(System.IO.File.Exists(filepath))
{
System.Web.HttpContext.Current.Response.Write("<script>alert('文件存在');</script>");
}
else
{
System.Web.HttpContext.Current.Response.Write("<script>alert('文件不存在');</script>");
}
//判断相对路径
if(System.IO.File.Exists(System.Web.HttpContext.Current.Server.MapPath(filepath)))
{
System.Web.HttpContext.Current.Response.Write("<script>alert('文件存在');</script>");
}
else
{
System.Web.HttpContext.Current.Response.Write("<script>alert('文件不存在');</script>");
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询