C# winform中保存文件绝对路径
C#winform中stringpicName=GetImagePath()+"\\"+"相片名称"+"jpg";这句代码是把图片保存到本地Debug中,我现在想把文件保...
C# winform中
string picName = GetImagePath() +"\\"+"相片名称"+"jpg";
这句代码是把图片保存到本地Debug中,我现在想把文件保存到P:\5.0 Production这个路径中,该怎么写? 求大神,来个解决方案。
private string GetImagePath()
{
string personImgPath = Path.GetDirectoryName(AppDomain.CurrentDomain.BaseDirectory)
+ Path.DirectorySeparatorChar.ToString() + "PersonImg";
if (!Directory.Exists(personImgPath))
{
Directory.CreateDirectory(personImgPath);
}
return personImgPath;
}
调用的这个方法 展开
string picName = GetImagePath() +"\\"+"相片名称"+"jpg";
这句代码是把图片保存到本地Debug中,我现在想把文件保存到P:\5.0 Production这个路径中,该怎么写? 求大神,来个解决方案。
private string GetImagePath()
{
string personImgPath = Path.GetDirectoryName(AppDomain.CurrentDomain.BaseDirectory)
+ Path.DirectorySeparatorChar.ToString() + "PersonImg";
if (!Directory.Exists(personImgPath))
{
Directory.CreateDirectory(personImgPath);
}
return personImgPath;
}
调用的这个方法 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询