我的程序:檢查Settings.txt文件。如果文件不存在,請創建文本並自動寫入。如果Settings.txt文件已經存在,則忽略。不要在現有文件中創建或寫入。文件創建但不能寫入
我的問題:當文件不存在時,Settings.txt文件創建但它是空的。我希望程序在創建文件時寫入它。謝謝你的幫助。
private void Form1_Load(object sender, EventArgs e)
{
string path = @"C:\Users\Smith\Documents\Visual Studio 2010\Projects\Ver.2\Settings.txt";
if (!File.Exists(path))
{
File.Create(path);
TextWriter tw = new StreamWriter(path);
tw.WriteLine("Manual Numbers=");
tw.WriteLine("");
tw.WriteLine("Installation Technical Manual: ");
tw.WriteLine("Performance Manual: ");
tw.WriteLine("Planned Maintenance Technical Manual: ");
tw.WriteLine("Service Calibration Manual: ");
tw.WriteLine("System Information Manual: ");
tw.WriteLine("");
tw.Close();
}
}
Yupp!現在正在工作。謝謝你的幫助。 :) – Smith