You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
414 B
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();
}
}
/*
Nature(Attribute) of the File : Archive