किसी फ़ाइल के बारे में जानकारी प्राप्त करने का अर्थ है उस विशेष फ़ाइल के लिए सभी विशेषताएँ निर्धारित करना। उदाहरण के लिए, एक फ़ाइल सामान्य, छिपी, संग्रहीत, आदि हो सकती है।
सबसे पहले, FileInfo वर्ग का उपयोग करें -
FileInfo info = new FileInfo("hello.txt");
अब, फ़ाइल के बारे में जानकारी प्राप्त करने के लिए FileAttributes का उपयोग करें -
FileAttributes attr = info.Attributes;
निम्नलिखित कोड है -
उदाहरण
using System.IO; using System; public class Program { public static void Main() { using (StreamWriter sw = new StreamWriter("hello.txt")) { sw.WriteLine("This is demo text!"); } FileInfo info = new FileInfo("hello.txt"); FileAttributes attr = info.Attributes; Console.WriteLine(attr); } }
आउटपुट
Normal