黑马程序员技术交流社区
标题:
把照片保存到文件,棒忙找错误
[打印本页]
作者:
霍世勇
时间:
2012-4-9 11:20
标题:
把照片保存到文件,棒忙找错误
private bool CopyPhoto(string photoPath, string photoNewName)
{
// 获得 保存照片文件夹路径
//Application.ExecutablePath
string photosDir = AppDomain.CurrentDomain.BaseDirectory + "EmployeesPhotos";
Directory.CreateDirectory(photosDir);
//保存文件路径
string newPath = photosDir + "\\" + photoNewName + Path.GetExtension(photoPath);
File.Copy(photoPath, newPath, true);
return true;
}
作者:
职业规划-蔡红微老师
时间:
2012-4-9 17:39
你用单步调试查看一下你的路径有没有错误,一个是获得的照片文件夹得路径,一个是保存文件的路径。
作者:
胡振超
时间:
2012-4-10 13:18
运行正常~你那里显示什么错误?
作者:
pray
时间:
2014-4-26 07:34
让人为了该帖而成立了各种学会来研究并为不同的理解争得眼红脖子粗的好帖
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2