偶然看到 rippleyong [涟漪勇]Post了一个VB.NET版的Save or append text to a file,于是一阵手痒,便有了这C#版的Method: public static bool SaveTextToFile( string filepath, string text, bool append) { using(System.IO.StreamWriter sw=new System.IO.StreamWriter(filepath,append)) { try { sw.Write(text); return true; } catch { return false; } } } 转载于:https://www.cnblogs.com/aspsir/archive/2005/02/16/104828.html