System.IO.File.AppendAllText 方法 (String, String, Encoding)
方法描述
将指定的字符串追加到文件中,如果文件还不存在则创建该文件。
语法定义(C# System.IO.File.AppendAllText 方法 (String, String, Encoding) 的用法)
public static void AppendAllText( string path, string contents, Encoding encoding )
参数/返回值
参数值/返回值 | 参数类型/返回类型 | 参数描述/返回描述 |
---|---|---|
path | System-String | 要将指定的字符串追加到的文件。 |
contents | System-String | 要追加到文件中的字符串。 |
encoding | System-Text-Encoding | 要使用的字符编码。 |
返回值 | void |
提示和注释
已知字符串和文件路径,此方法打开指定的文件,使用指定的编码将字符串追加到文件末尾,然后关闭文件。 即使会引发异常,也使用此方法保证文件句柄已关闭。
System.IO.File.AppendAllText 方法 (String, String, Encoding)例子
在此示例中,如果文件尚不存在,则创建一个文件,并向其中添加文本。
using System; using System.IO; using System.Text; class Test { public static void Main() { string path = @"c:\temp\MyTest.txt"; // This text is added only once to the file. if (!File.Exists(path)) { // Create a file to write to. string createText = "Hello and Welcome" + Environment.NewLine; File.WriteAllText(path, createText, Encoding.UTF8); } // This text is always added, making the file longer over time // if it is not deleted. string appendText = "This is extra text" + Environment.NewLine; File.AppendAllText(path, appendText, Encoding.UTF8); // Open the file to read from. string readText = File.ReadAllText(path); Console.WriteLine(readText); } }
异常
异常 | 异常描述 |
---|---|
ArgumentException | path 是一个零长度字符串,仅包含空白或者包含一个或多个由 InvalidPathChars 定义的无效字符。 |
ArgumentNullException | path 为 null。 |
PathTooLongException | 指定的路径、文件名或者两者都超出了系统定义的最大长度。 例如,在基于 Windows 的平台上,路径必须小于 248 个字符,文件名必须小于 260 个字符。 |
DirectoryNotFoundException | 指定的路径无效(例如,它位于未映射的驱动器上)。 |
IOException | 打开文件时发生了 I/O 错误。 |
UnauthorizedAccessException |
|
FileNotFoundException | 未找到 path 中指定的文件。 |
NotSupportedException | path 的格式无效。 |
SecurityException | 调用方没有所要求的权限。 |
版本信息
.NET Framework 受以下版本支持:4、3.5、3.0、2.0 .NET Framework Client Profile 受以下版本支持:4、3.5 SP1
适用平台
Windows 7, Windows Vista SP1 或更高版本, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008(不支持服务器核心), Windows Server 2008 R2(支持 SP1 或更高版本的服务器核心), Windows Server 2003 SP2 .NET Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。