C#里怎么样检测文件的属性?
C#里怎么样检测文件的属性?
对于文件来说,在C#里有一种快速的方法来检查文件的属性。
比如文件是否已经压缩,
文件是否加密,
文件是否是目录等等。
属性有下面这么多:
例子演示如下:
/*
* C# Program to View the Information of the File
*/
using System;
using System.IO;
class Program
{
static void Main()
{
FileInfo info = new FileInfo("C:\\sri\\srip.txt");
FileAttributes attributes = info.Attributes;
Console.WriteLine("Nature(Attribute) of the File : {0}",attributes);
Console.Read();
}
}
例子:
using Sys