創建一個文件夾用於寫入UTF-8編碼的文件
阿新 • • 發佈:2019-01-11
arp class emp oid lin line ext send 寫入
實現效果:
知識運用:
File類的CreateText方法
StreamWriter類的WriteLine方法
實現代碼:
private void button2_Click(object sender, EventArgs e) { if (string.IsNullOrEmpty(textBox1.Text)) { MessageBox.Show("請填寫文件路徑!"); return; } if (string.IsNullOrEmpty(textBox2.Text)) { MessageBox.Show("請輸入文件內容!"); return; } if (!File.Exists(textBox1.Text)) { StreamWriter sw = File.CreateText(textBox1.Text); sw.WriteLine(textBox2.Text); sw.Close(); MessageBox.Show("文件創建成功","提示",MessageBoxButtons.OK,MessageBoxIcon.Information); } else { MessageBox.Show("文件存在!","提示",MessageBoxButtons.OK,MessageBoxIcon.Information); } }
創建一個文件夾用於寫入UTF-8編碼的文件