Open In App

C# Program to Demonstrate the Use of FullName Property

DirectoryInfo class provides different types of methods and properties that are used to perform operations on directories and sub-directories like creating, moving, etc and FullName property is one of them. This property is used to find the full path of the directory or the specified file.

Syntax:



public virtual string FullName { get; }

Return: It will return a string that contains the full path of the current directory or file.



Exception: This property will throw the following exceptions:

Example:




// C# program to demonstrate the use of 
// FullName property
using System;
using System.IO;
  
class GFG{
  
static void Main()
{
      
    // Creating a object which contain the 
    // name of the directory 
    DirectoryInfo full_name = new DirectoryInfo("vignan");
  
    Console.WriteLine("FullName");
      
    // Finding the full path of the directory 
    // Using FullName property
    Console.WriteLine(full_name.FullName);
}
}

Output:

FullName
/home/cg/root/8057718/vignan
Article Tags :