我想在服务器中保存图像,我正在使用VS C#2012而服务器我正在使用IIS和我的IP,但每次我放置图像时,都会收到错误:
找不到路径187.184.43.27 \ CyF.jpg
的一部分
不知道错误是在sintax路径中还是在其他路径中。
这是我保存图片的代码。
private void cmd_imagen_Click(object sender, EventArgs e)
{
OpenFileDialog open = new OpenFileDialog();
open.Filter = "Archivos jpg(*.jpg)|*.jpg";
open.Title = "Archivos jpg";
if (open.ShowDialog() == DialogResult.OK)
{
string dir = open.FileName;
string destino = Path.Combine("187.184.43.27", Path.GetFileName(dir));
File.Copy(dir, destino);//This is the line where i get the error
}
open.Dispose();
}
感谢您的帮助