出错信息:
0000\Root\Picture 045.jpg
Path does not exist.
Please verify the correct path was given.
========================================
项目急用,谢谢大伙

解决方案 »

  1.   

    代码如下:
     OpenFileDialog openPic = new OpenFileDialog();
                openPic.FileName = "Select Image Files";
                openPic.Filter = "All Image Formats (*.bmp;*.jpg;*.jpeg;*.gif;*.png;*.tif)|*.bmp;*.jpg;*.jpeg;*.gif;*.png;*.tif|All Files (*.*)|*.*";
                openPic.Multiselect = true;
                if (openPic.ShowDialog() == DialogResult.OK)  //选两个以上的文件时,这步已经出错
                { 
    ..............
    }
      

  2.   

    openPic.FileName....检查看是否获取到 都是绝对路径
      

  3.   

    是不是你存放的路径有非法字符,
    加断点看一下OpenFileDialog 返回的路径看看~~