C#如何实现把程序内资源文件复制到电脑的制定文件夹
展开全部
写个大概意思阿
string nam = FileUpload1.PostedFile.FileName;
//取得文件名(抱括路径)里最后一个"."的索引
int i = nam.LastIndexOf(".");
//取得文件扩展名
string newext = nam.Substring(i);
//这里我自动根据日期和文件大小不同为文件命名,确保文件名不重复
DateTime now = DateTime.Now;
string newname = now.DayOfYear.ToString() + FileUpload1.PostedFile.ContentLength.ToString(); // 文件名称
FileUpload1.PostedFile.SaveAs(Server.MapPath(".\\picture\\" + newname + newext));//主要是这一句是拷贝方法和路径
string nam = FileUpload1.PostedFile.FileName;
//取得文件名(抱括路径)里最后一个"."的索引
int i = nam.LastIndexOf(".");
//取得文件扩展名
string newext = nam.Substring(i);
//这里我自动根据日期和文件大小不同为文件命名,确保文件名不重复
DateTime now = DateTime.Now;
string newname = now.DayOfYear.ToString() + FileUpload1.PostedFile.ContentLength.ToString(); // 文件名称
FileUpload1.PostedFile.SaveAs(Server.MapPath(".\\picture\\" + newname + newext));//主要是这一句是拷贝方法和路径
追问
这个文件是在安装程序内部的呢?就不用取得文件名了吧..
追答
随便 这个用不用都行
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询