码迷,mamicode.com
首页 > Web开发 > 详细

使用OpenFileDialog实现图片上传

时间:2016-06-26 18:29:09      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:

demo效果图:

技术分享

注意:图片是存在项目的\bin\Debug\Images下

一个引用:using System.IO;

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace 上传图片到指定文件夹
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            //初始化openFileDialog
            OpenFileDialog ofd = new OpenFileDialog();
            ofd.Title = "请选择要上传的图片";
            ofd.Filter = "图像文件(*.jpg;*.gif;*.png)|*.jpg;*.gif;*.png";
            ofd.Multiselect = false;

            if (ofd.ShowDialog() == DialogResult.OK)
            {
                string oldFilePath = ofd.FileName;
                int position = oldFilePath.LastIndexOf("\\");
                string OldfileName = oldFilePath.Substring(position + 1);
                string[] splitName = oldFilePath.Split(.);
                string ext = splitName[splitName.Length - 1];

                string newName = DateTime.Now.ToString("yyyyMMddhhmmss")+"."+ext;

                //判断根目录下是否含有指定文件夹,若没有则创建一个新的
                string path = AppDomain.CurrentDomain.BaseDirectory+"/Images";
                DirectoryInfo di = new DirectoryInfo(path);
                if (!di.Exists)
                {
                    di.Create();
                }
                string newFilePath = AppDomain.CurrentDomain.BaseDirectory+ "/Images" + newName;

                File.Copy(oldFilePath, newFilePath, true);
                Image img = Image.FromFile(newFilePath);
                pictureBox1.Image = img;
            }
        }
    }
}

 

使用OpenFileDialog实现图片上传

标签:

原文地址:http://www.cnblogs.com/zix1314/p/5618281.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!