System.IO.File.AppendAllLines 方法 (String, IEnumerable)
上一篇:System.IO.FileAccess 类
下一篇:System.IO.File.AppendAllLines(String,IEnumerable{String},Encoding) 方法
方法描述
在一个文件中追加文本行,然后关闭该文件。
语法定义(C# System.IO.File.AppendAllLines 方法 (String, IEnumerable) 的用法)
public static void AppendAllLines( string path, IEnumerablecontents )
参数/返回值
参数值/返回值 | 参数类型/返回类型 | 参数描述/返回描述 |
---|---|---|
path | System-String | 要向其中追加文本行的文件。如果文件尚不存在,则创建该文件。 |
contents | System-Collections-Generic-IEnumerable |
要追加到文件中的文本行。 |
返回值 | void |
提示和注释
如果目标文件不存在,则创建该文件。
System.IO.File.AppendAllLines 方法 (String, IEnumerable)例子
下面的示例将示例数据文件中的选定行写入一个文件,然后再追加更多行。
using System; using System.IO; using System.Linq; class Program { static string dataPath = @"c:\temp\timestamps.txt"; static void Main(string[] args) { CreateSampleFile(); var JulyWeekends = from line in File.ReadLines(dataPath) where (line.StartsWith("Saturday") || line.StartsWith("Sunday")) & line.Contains("July") select line; File.WriteAllLines(@"C:\temp\selectedDays.txt", JulyWeekends); var MarchMondays = from line in File.ReadLines(dataPath) where line.StartsWith("Monday") && line.Contains("March") select line; File.AppendAllLines(@"C:\temp\selectedDays.txt", MarchMondays); } static void CreateSampleFile() { DateTime TimeStamp = new DateTime(1700, 1, 1); using (StreamWriter sw = new StreamWriter(dataPath)) { for (int i = 0; i < 500; i++) { DateTime TS1 = TimeStamp.AddYears(i); DateTime TS2 = TS1.AddMonths(i); DateTime TS3 = TS2.AddDays(i); sw.WriteLine(TS3.ToLongDateString()); } } } }
异常
异常 | 异常描述 |
---|---|
ArgumentException | path 是一个零长度字符串,仅包含空白或者包含 GetInvalidPathChars 方法中已定义一个或多个无效字符。 |
ArgumentNullException | path 或 contents 为 null。 |
DirectoryNotFoundException | path 无效(例如,在未映射的驱动器上)。 |
FileNotFoundException | 未找 path 中指定的文件。 |
IOException | 打开文件时发生了 I/O 错误。 |
PathTooLongException | path 超过了系统定义的最大长度。 例如,在基于 Windows 的平台上,路径必须小于 248 个字符,文件名必须小于 260 个字符。 |
NotSupportedException | path 的格式无效。 |
SecurityException | 调用方没有写入到文件的权限。 |
UnauthorizedAccessException |
|
版本信息
.NET Framework 受以下版本支持:4 .NET Framework Client Profile 受以下版本支持:4
适用平台
Windows 7, Windows Vista SP1 或更高版本, Windows XP SP3, Windows Server 2008(不支持服务器核心), Windows Server 2008 R2(支持 SP1 或更高版本的服务器核心), Windows Server 2003 SP2 .NET Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。
上一篇:System.IO.FileAccess 类
下一篇:System.IO.File.AppendAllLines(String,IEnumerable{String},Encoding) 方法