18 lines
414 B
C#
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
|