程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> c# winform 路徑選擇和文件讀寫

c# winform 路徑選擇和文件讀寫

編輯:C#入門知識

//讀文件
        private void readBtn_Click(object sender, EventArgs e)
        {
            try 
            {
                if (pathTxt.Text == "")
                {
                    MessageBox.Show("請輸入文件地址");
                    return;
                }
                readTxt.Text = File.ReadAllText(pathTxt.Text, Encoding.Default);//不需要對地址中的"\"進行轉義
            }
            catch (Exception ex)
            {
                MessageBox.Show("文件地址錯誤");
            }
           
            
        }
        //寫文件
        private void writeBtn_Click(object sender, EventArgs e)
        {
            try
            {
                if (pathTxt.Text == "")
                {
                    MessageBox.Show("請輸入文件地址");
                    return;
                }
                File.WriteAllText(pathTxt.Text, writeTxt.Text);
                MessageBox.Show("success");
            }
            catch (Exception ex)
            {
                MessageBox.Show("文件地址錯誤");
            }
        }
        //讀取文件夾路徑
        private void folderBtn_Click(object sender, EventArgs e)
        {
            if (folderBrowserDialog1.ShowDialog() == DialogResult.OK)
            {
                folderTxt.Text = folderBrowserDialog1.SelectedPath;
            }
        }
        //讀取文件路徑
        private void fileBtn_Click(object sender, EventArgs e)
        {
            
            OpenFileDialog op = new OpenFileDialog();
            op.Filter = "Text files (*.txt)|*.txt|All Files(*.*)|*.*";
            if (op.ShowDialog() == DialogResult.OK)
            {
                pathTxt.Text = op.FileName;
            }
        }

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved