ASP.NET,图片上传,错误为:未能映射路径“/UploadFile/Pic” 。求解答跪谢
是“DirectoryInfodire=newDirectoryInfo(Server.MapPath(fileFolder));//创建文件夹”这句有问题上网查说Map...
是“DirectoryInfo dire=new DirectoryInfo(Server.MapPath(fileFolder));//创建文件夹” 这句有问题
上网查说MapPath后跟相对地址,不明白,求解。全部代码如下
//上传文件,分两步 第一步:将图片上传到服务器 第二步:将路径保存到数据库
string path = "";
string fileNewName = DateTime.Now.ToLongDateString() + DateTime.Now.Hour.ToString() + DateTime.Now.Minute.ToString();
if(this.FileUpload1.PostedFile.FileName.Length>0)
{
int ipos=this.FileUpload1.PostedFile.FileName.LastIndexOf("\\");
string fileName="";
if(ipos.ToString().Trim()!="-1")
{
fileName=this.FileUpload1.PostedFile.FileName.Substring(ipos);//获取文件名
}
else
{
fileName=this.FileUpload1.PostedFile.FileName;
}
int iiii=fileName.LastIndexOf(".");
string fileExpandName=fileName.Substring(iiii);//获取扩展名
fileExpandName=fileExpandName.ToLower();
if(fileExpandName==".jpg"||fileExpandName==".gif"||fileExpandName==".png")
{
string fileFolder = "\\UploadFile\\Pic"; //构造文件夹名称
path = fileFolder + "\\" + fileNewName + fileExpandName;
DirectoryInfo dire=new DirectoryInfo(Server.MapPath(fileFolder));//创建文件夹
if(!dire.Exists)
{ dire.Create(); }
this.FileUpload1.PostedFile.SaveAs(Server.MapPath(path)); }
else
{
Console.WriteLine("您上传的格式不正确");
} 展开
上网查说MapPath后跟相对地址,不明白,求解。全部代码如下
//上传文件,分两步 第一步:将图片上传到服务器 第二步:将路径保存到数据库
string path = "";
string fileNewName = DateTime.Now.ToLongDateString() + DateTime.Now.Hour.ToString() + DateTime.Now.Minute.ToString();
if(this.FileUpload1.PostedFile.FileName.Length>0)
{
int ipos=this.FileUpload1.PostedFile.FileName.LastIndexOf("\\");
string fileName="";
if(ipos.ToString().Trim()!="-1")
{
fileName=this.FileUpload1.PostedFile.FileName.Substring(ipos);//获取文件名
}
else
{
fileName=this.FileUpload1.PostedFile.FileName;
}
int iiii=fileName.LastIndexOf(".");
string fileExpandName=fileName.Substring(iiii);//获取扩展名
fileExpandName=fileExpandName.ToLower();
if(fileExpandName==".jpg"||fileExpandName==".gif"||fileExpandName==".png")
{
string fileFolder = "\\UploadFile\\Pic"; //构造文件夹名称
path = fileFolder + "\\" + fileNewName + fileExpandName;
DirectoryInfo dire=new DirectoryInfo(Server.MapPath(fileFolder));//创建文件夹
if(!dire.Exists)
{ dire.Create(); }
this.FileUpload1.PostedFile.SaveAs(Server.MapPath(path)); }
else
{
Console.WriteLine("您上传的格式不正确");
} 展开
2014-05-03
展开全部
string fileFolder = "\\UploadFile\\Pic"; //构造文件夹名称
改成 string fileFolder = "UploadFile\\Pic"; //构造文件夹名称
\是绝对路径。。.\才是相对路径'
改成 string fileFolder = "UploadFile\\Pic"; //构造文件夹名称
\是绝对路径。。.\才是相对路径'
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询