你怎么解决“找不到路径的一部分”的错误?

时间:2014-02-26 05:51:06

标签: c# iis visual-studio-2012

我想在服务器中保存图像,我正在使用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();
}

感谢您的帮助

0 个答案:

没有答案