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 WindowsFormsApp4
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)//讀取文本
{
this.openFileDialog1.Filter = "*.txt|*.txt";
if (openFileDialog1.ShowDialog() == System.Windows.Forms.DialogResult.OK)
{
StreamReader sr = new StreamReader(openFileDialog1.FileName);
MessageBox.Show(sr.ReadToEnd());
sr.Close();
}
}
private void button2_Click(object sender, EventArgs e)//選擇圖片
{
this.openFileDialog1.Filter = "(*.jpg;*.jpg;*.jpeg;*.gif;*.png)|*.jpg;*.jpeg;*.gif;*.png";
if (openFileDialog1.ShowDialog() == DialogResult.OK)
{
MessageBox.Show("" + openFileDialog1.FileName);
pictureBox1.ImageLocation = openFileDialog1.FileName;
}
}
//拷貝到制定文件夾
private void button4_Click(object sender, EventArgs e)
{
string oldpath = pictureBox1.ImageLocation;
string fileName = System.IO.Path.GetFileName(oldpath).ToString();
string copypath = System.IO.Directory.GetCurrentDirectory() + "/images/";//當前運行程序的images文件夾
if (!Directory.Exists(copypath))//如果這個目錄不存在就創(chuàng)建
{
Directory.CreateDirectory(copypath);
}
File.Copy(pictureBox1.ImageLocation, copypath + fileName, true);
MessageBox.Show("保存成功");
}
//另存
private void button3_Click(object sender, EventArgs e)
{
SaveFileDialog saveFileDialog1 = new SaveFileDialog();
string oldpath = pictureBox1.ImageLocation;
string fileName = System.IO.Path.GetFileName(oldpath).ToString();
string houzui = System.IO.Path.GetExtension(oldpath).ToString();
saveFileDialog1.Filter = "txt files (*.txt)|*.txt|All files (*.*)|*.*";
saveFileDialog1.FilterIndex = 2;
saveFileDialog1.RestoreDirectory = true;
if (saveFileDialog1.ShowDialog() == DialogResult.OK)
{
MessageBox.Show(saveFileDialog1.FileName);
File.Copy(pictureBox1.ImageLocation, saveFileDialog1.FileName+houzui, true);
}
}
}
}
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機、免備案服務(wù)器”等云主機租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。