Share Lấy đường dẫn thư mục hiện tại trong lập trình C#

ngongocdaisy1

New member
#C ##Programming #Cien thư mục đường dẫn #Get Đường dẫn thư mục hiện tại #Folder Path

## Nhận đường dẫn thư mục hiện tại trong lập trình C#

Trong C#, bạn có thể nhận đường dẫn thư mục hiện tại bằng phương thức `Directory.getCienDirectory ()`.Phương thức này trả về một chuỗi chứa đường dẫn đầy đủ đến thư mục làm việc hiện tại.

Ví dụ: mã sau sẽ in đường dẫn thư mục hiện tại vào bảng điều khiển:

`` `C#
chuỗi currentDirectory = thư mục.getCienDirectory ();
Console.WriteLine (currentDirectory);
`` `

Đầu ra:

`` `
C: \ Users \ username \ Documents \ Project \ MyProject
`` `

Bạn cũng có thể sử dụng phương thức `Directory.getParent ()` để lấy thư mục chính của thư mục hiện tại.Ví dụ: mã sau sẽ in thư mục chính của thư mục hiện tại vào bảng điều khiển:

`` `C#
Chuỗi ParentDirectory = Directory.GetParent (Thư mục.getCienDirectory ());
Console.WriteLine (ParentDirectory);
`` `

Đầu ra:

`` `
C: \ Users \ username \ Documents \ Project
`` `

## hashtags

* #C#
* #Programming
* Đường dẫn thư mục #CURNT
* #Get đường dẫn thư mục hiện tại
* Đường dẫn #Folder
=======================================
#C# #Programming #current folder path #Get current folder path #Folder path

## Get the current folder path in C# programming

In C#, you can get the current folder path using the `Directory.GetCurrentDirectory()` method. This method returns a string containing the full path to the current working directory.

For example, the following code will print the current folder path to the console:

```c#
string currentDirectory = Directory.GetCurrentDirectory();
Console.WriteLine(currentDirectory);
```

Output:

```
C:\Users\username\Documents\Projects\myproject
```

You can also use the `Directory.GetParent()` method to get the parent folder of the current directory. For example, the following code will print the parent folder of the current directory to the console:

```c#
string parentDirectory = Directory.GetParent(Directory.GetCurrentDirectory());
Console.WriteLine(parentDirectory);
```

Output:

```
C:\Users\username\Documents\Projects
```

## Hashtags

* #C#
* #Programming
* #current folder path
* #Get current folder path
* #Folder path
 
Join Telegram ToolsKiemTrieuDoGroup
Back
Top