×

C# Tutorial

Basics of .Net

C# Basics

C# Fundamentals

C# Operators

C# Loops

C# Type Conversions

C# Exception Handling

C# String Class

C# Arrays

C# List

C# Stack

C# Queue

C# Collections

C# Character Class

C# Class and Object

C# Namespaces

C# Delegates

C# Constructors

C# Inheritance

C# Operator Overloading

C# Structures

C# File Handling

C# Convert.ToInt32()

C# Int32 (int) Struct

C# DateTime Class

C# Uri Class

C# Database Connectivity

C# Windows

C# Other Topics

C# Q & A

C# Programs

C# Find O/P

C# - How to Get Complete Path of Current Directory?

Learn, how to get complete path of current directory using C# program?
Submitted by IncludeHelp, on November 12, 2017 [Last updated : March 26, 2023]

Get Complete Path of Current Directory

To get complete path of current directory in C#, we use Directory.GetCurrentDirectory() method.

Directory.GetCurrentDirectory()

This is a method of 'Directory' class, it returns the path of a directory.

Syntax

string Directory.GetCurrentDirectory();

Parameter(s)

  1. None

Return Value

Complete path of current directory.

C# program to get complete path of current directory

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

Explanation

In the 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 »

Advertisement
Advertisement

Comments and Discussions!

Load comments ↻


Advertisement
Advertisement
Advertisement

Copyright © 2025 www.includehelp.com. All rights reserved.