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

buitan.phuoc

New member
#C ##Programming #Folder #Cien #Get

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

Trong C#, bạn có thể nhậ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 đại diện cho đường dẫn đến thư mục làm việc hiện tại.

Ví dụ: mã sau sẽ in thư mục làm việ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 \
`` `

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 (currentDirectory);
Console.WriteLine (ParentDirectory);
`` `

Đầu ra:

`` `
C: \ user \ username \ tài liệu
`` `

## hashtags

* C#
* Lập trình
* thư mục
* hiện hành
* lấy
=======================================
#C# #Programming #Folder #current #Get

## Get the current folder in C# programming

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

For example, the following code will print the current working directory to the console:

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

Output:

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

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

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

Output:

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

## Hashtags

* C#
* programming
* folder
* current
* get
 
Join Telegram ToolsKiemTrieuDoGroup
Back
Top