programming-examples/c-sharp/Files/C# Program to View the Information of the File.cs

18 lines
414 B
C#
Raw Normal View History

2019-11-15 12:59:38 +01:00
/*
* 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