System.IO.File.WriteAllLines 方法 (String, String[], Encoding)
上一篇:System.IO.File.WriteAllLines(String,IEnumerable{String},Encoding) 方法
下一篇:System.IO.File.WriteAllText(String,String) 方法
方法描述
创建一个新文件,使用指定的编码在其中写入指定的字符串数组,然后关闭该文件。
语法定义(C# System.IO.File.WriteAllLines 方法 (String, String[], Encoding) 的用法)
public static void WriteAllLines( string path, string[] contents, Encoding encoding )
参数/返回值
参数值/返回值 | 参数类型/返回类型 | 参数描述/返回描述 |
---|---|---|
path | System-String | 要写入的文件。 |
contents | System-String[] | 要写入文件的字符串数组。 |
encoding | System-Text-Encoding | 一个 Encoding 对象,表示应用于字符串数组的字符编码。 |
返回值 | void |
提示和注释
如果目标文件已存在,则覆盖该文件。
已知字符串数组和文件路径,此方法打开指定的文件,使用指定的编码将字符串数组写入文件,然后关闭文件。
System.IO.File.WriteAllLines 方法 (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" }; File.WriteAllLines(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.ReadAllLines(path, Encoding.UTF8); foreach (string s in readText) { Console.WriteLine(s); } } }
异常
异常 | 异常描述 |
---|---|
ArgumentException | path 是一个零长度字符串,仅包含空白或者包含一个或多个由 InvalidPathChars 定义的无效字符。 |
ArgumentNullException | path 或 contents 为 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 系统要求。
上一篇:System.IO.File.WriteAllLines(String,IEnumerable{String},Encoding) 方法
下一篇:System.IO.File.WriteAllText(String,String) 方法