ASP.NET获取文件的相关知识

       string filePath = FileUpload1.PostedFile.FileName;//获取上传文件的路径
            string fileName = filePath.Substring(filePath.LastIndexOf("\\") + 1);//获取文件名称
            string filesize = Convert.ToString(FileUpload1.PostedFile.ContentLength);//获取文件大小
            string fileExtend = filePath.Substring(filePath.LastIndexOf(".") + 1);//获取文件扩展名
            string fileType = FileUpload1.PostedFile.ContentType;//获取文件类型
            string serverPath = Server.MapPath("指定文件夹名称") + fileName;//保存到服务器的路径
            FileUpload1.PostedFile.SaveAs(serverPath);//确定上传文件

  

posted @ 2016-11-11 15:47  清风白水  阅读(143)  评论(0编辑  收藏  举报