रूट निर्देशिका का नाम प्राप्त करने के लिए RootDirectory गुण का उपयोग करें।
सबसे पहले, ड्राइवइन्फो का उपयोग उस ड्राइव को सेट करने के लिए करें जिसके लिए आप रूट डायरेक्टरी चाहते हैं -
DriveInfo dInfo = new DriveInfo("C");
अब, रूटडायरेक्टरी आपको परिणाम देता है -
dInfo.RootDirectory
उदाहरण
ये रहा पूरा कोड -
using System; using System.Linq; using System.IO; public class Demo { public static void Main() { DriveInfo dInfo = new DriveInfo("C"); Console.WriteLine("Root Directory: "+dInfo.RootDirectory); } }
आउटपुट
निम्न आउटपुट है -
C:\