我正在開發一個類的項目。我必須做的是將解析的指令導出到文件。微軟有這個例子,說明如何寫入文件:將文件寫入任何計算機上的項目文件夾
// Compose a string that consists of three lines.
string lines = "First line.\r\nSecond line.\r\nThird line.";
// Write the string to a file.
System.IO.StreamWriter file = new System.IO.StreamWriter("c:\\test.txt");
file.WriteLine(lines);
file.Close();
我沒事的那部分,但有寫文件到當前項目的環境/位置的方法嗎?我想這樣做,而不是硬編碼一個特定的路徑(即"C:\\test.txt"
)。
甜。簡明扼要。非常感謝! – blutuu