C#程序检查文件信息
给定一个文件,现在我们的任务是通过C#查看这个文件的信息。所以为了完成这个任务,我们使用 FileInfo 类。此类提供不同类型的属性和方法来创建、复制、删除、打开和移动文件。它也用于创建 FileStream 对象。所以在这里我们创建一个包含文件名的 FileInfo 类的对象。
语法:
FileInfo info = new FileInfo("C:\\sravan\\data.txt");
示例:
在此示例中,我们考虑存在于 C 驱动器的“sravan”文件夹或“C:\\sravan\\data.txt”中的名为“data.txt”的文件。现在借助此路径,我们将使用 Attributes 属性找到“data.txt”文件的信息。此属性返回一个枚举常量,该常量被编码为枚举标志。
C#
// C# program to display the information of file
using System;
using System.IO;
class GFG{
static void Main()
{
// Get the file
FileInfo information = new FileInfo("C:\\sravan\\data.txt");
// Get the file information
FileAttributes attributes = information.Attributes;
// Display file information
Console.WriteLine("Attribute of the File is {0}", attributes);
}
}
输出:
Attribute of the File is Archive