【C# Windows窗体】上传文件

private void btnUpLoadPic_Click(object sender, EventArgs e)
        {
            //文件类型过滤
            openFileDialog1.Filter = "图像文件(*.jpg,*.bmp,*.gif)|*.jpg;*.bmp;*.gif";
            if (openFileDialog1.ShowDialog() == DialogResult.OK)
            {
                //得到文件路径全名
                string imageFilePath = openFileDialog1.FileName;
                //得到文件名
                string currentImageName = imageFilePath.Substring(imageFilePath.LastIndexOf('\\') + 1);
                //将选择的图片复制到程序文件夹里(需要IO库)
                //DirectoryInfo directoryInfo=new DirectoryInfo("\\Debug\\");
                if (new FileInfo(currentImageName).Exists)
                {
                    MessageBox.Show("图片名与图片" + currentImageName + "重名,请修改名称后再次上传");
                }
                else

你可能感兴趣的:(C#,C#,WinForm)