File.ReadLines(String)是一个内置的File类方法,用于读取文件的行。
用法:
public static System.Collections.Generic.IEnumerable ReadLines (string path);
参数:此函数接受如下所示的参数:
- path: This is the specified file for reading.
异常:
- ArgumentException:路径为长度为零的字符串,仅包含空格,或由GetInvalidPathChars()方法定义的一个或多个无效字符。
- ArgumentNullException:路径为空。
- DirectoryNotFoundException:路径无效。
- FileNotFoundException:找不到路径指定的文件。
- IOException:打开文件时发生I /O错误。
- PathTooLongException:路径超过最大长度system-defined。
- SecurityException:调用者没有所需的权限。
- UnauthorizedAccessException:该路径指定一个只读文件。或者当前平台不支持此操作。或路径是目录。或调用者没有所需的权限。
返回值:返回指定文件的所有行。
下面是说明File.ReadLines(String)方法的程序。
程序1:最初,将创建一个文件file.txt,其内容如下所示-
// C# program to illustrate the usage
// of File.ReadLines(String) method
// Using System and System.IO namespaces
using System;
using System.IO;
public class GFG {
public static void Main(String[] argv)
{
// Calling the ReadLines(String) function
foreach(string line in File.ReadLines(@"file.txt"))
{
// Printing the file contents
Console.WriteLine(line);
}
}
}
输出:
GFG gfg Geeks GeeksforGeeks geeksforgeeks
程序2:最初,将创建一个文件file.txt,其内容如下所示-
下面的代码从文件中过滤掉一些内容,然后将它们打印回去。
// C# program to illustrate the usage
// of File.ReadLines(String) method
// Using System and System.IO namespaces
using System;
using System.IO;
public class GFG {
public static void Main(String[] argv)
{
// Calling the ReadLines(String) function
foreach(string line in File.ReadLines(@"file.txt"))
{
// Filtering the file contents and printing
if (line.Contains("GFG")) {
Console.WriteLine(line);
}
}
}
}
输出:
GFG
相关用法
- C# MathF.Exp()用法及代码示例
- C# MathF.Abs()用法及代码示例
- C# Uri.GetLeftPart()用法及代码示例
- C# MathF.Tan()用法及代码示例
- C# MathF.Cos()用法及代码示例
- C# MathF.Pow()用法及代码示例
- C# MathF.Min()用法及代码示例
- C# Uri.HexUnescape()用法及代码示例
- C# Uri.ReferenceEquals()用法及代码示例
- C# MathF.Max()用法及代码示例
- C# MathF.Log()用法及代码示例
- C# MathF.Sin()用法及代码示例
- C# MathF.Acos()用法及代码示例
- C# Object.GetHashCode()用法及代码示例
- C# Object.GetTypeCode()用法及代码示例
- C# MathF.Acosh()用法及代码示例
- C# File.Exists()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 File.ReadLines(String) Method in C# with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。