Home »
.Net »
C# Programs
C# program to get complete path of current directory
In this program, we will learn how to get complete path of current directory using C# code? To get path of current directory, we have to use static method GetCurrentDirectory() of Directory class.
Submitted by IncludeHelp, on November 12, 2017
Directory.GetCurrentDirectory()
This is a method of 'Directory' class, it returns the path of a directory.
Syntax:
string Directory.GetCurrentDirectory();
Return value:
Complete path of current directory.
Program
using System;
using System.IO;
namespace ConsoleApplication1
{
class Program
{
static void Main()
{
string curDir = "";
curDir = Directory.GetCurrentDirectory();
Console.WriteLine("Current Directory is :\n"+curDir);
}
}
}
Output
C:\Users\Manju\Documents\Visual Studio 2010\Projects\ihelp\ConsoleApplication1\
ConsoleApplication1\bin\Debug
Note: In above program, we need to remember, when we use "Directory" class, System.IO namespace must be included in the program.
C#.Net Directory Class Programs »