Share vb.net get filename from path

thuynhiokokok

New member
### Cách lấy tên tệp từ một đường dẫn trong vb.net

Trong vb.net, bạn có thể lấy tên tệp từ một đường dẫn bằng các phương thức sau:

*Phương thức ** path.getFileName **
*Path.getFileNamewithOutExtension ** Phương thức
*Phương thức ** path.getParent **

Phương thức ** path.getFileName ** Trả về tên tệp của đường dẫn được chỉ định, bao gồm cả phần mở rộng.Đường dẫn **.getFileNamewithOutExtension ** Phương thức trả về tên tệp của đường dẫn được chỉ định, không có phần mở rộng.Phương thức ** path.getParent ** Trả về thư mục cha của đường dẫn được chỉ định.

Ví dụ: mã sau lấy tên tệp từ đường dẫn "C: \ user \ user \ Documents \ file.txt":

`` `VBNet
Dim Path As String = "C: \ Users \ User \ Documents \ File.txt"
Dim FileName as String = path.getFileName (path)

'Tên tệp hiện chứa giá trị "File.txt"
`` `

Mã sau đây có tên tệp mà không có phần mở rộng từ đường dẫn "C: \ user \ user \ Documents \ file.txt":

`` `VBNet
Dim Path As String = "C: \ Users \ User \ Documents \ File.txt"
Dim FileNameWithouTExtension as String = path.getFileNamewithOutExtension (Path)

'FILENAMEWITHOUTEXTENCENT Bây giờ chứa giá trị "Tệp"
`` `

Mã sau đây có thư mục chính của đường dẫn "C: \ user \ user \ Documents \ file.txt":

`` `VBNet
Dim Path As String = "C: \ Users \ User \ Documents \ File.txt"
Dim ParentDirectory dưới dạng chuỗi = path.getParent (path)

'ParentDirectory hiện chứa giá trị "C: \ user \ user \ tài liệu"
`` `

## 5 hashtags

* #vb.net
* #Con đường
* #Filename
* #GetFileName
* #GetParent
=======================================
### How to Get the Filename from a Path in VB.NET

In VB.NET, you can get the filename from a path using the following methods:

* The **Path.GetFileName** method
* The **Path.GetFileNameWithoutExtension** method
* The **Path.GetParent** method

The **Path.GetFileName** method returns the filename of the specified path, including the extension. The **Path.GetFileNameWithoutExtension** method returns the filename of the specified path, without the extension. The **Path.GetParent** method returns the parent directory of the specified path.

For example, the following code gets the filename from the path "C:\Users\User\Documents\file.txt":

```vbnet
Dim path As String = "C:\Users\User\Documents\file.txt"
Dim filename As String = Path.GetFileName(path)

' filename now contains the value "file.txt"
```

The following code gets the filename without the extension from the path "C:\Users\User\Documents\file.txt":

```vbnet
Dim path As String = "C:\Users\User\Documents\file.txt"
Dim filenameWithoutExtension As String = Path.GetFileNameWithoutExtension(path)

' filenameWithoutExtension now contains the value "file"
```

The following code gets the parent directory of the path "C:\Users\User\Documents\file.txt":

```vbnet
Dim path As String = "C:\Users\User\Documents\file.txt"
Dim parentDirectory As String = Path.GetParent(path)

' parentDirectory now contains the value "C:\Users\User\Documents"
```

## 5 Hashtags

* #vb.net
* #Path
* #Filename
* #GetFileName
* #GetParent
 
Join Telegram ToolsKiemTrieuDoGroup
Back
Top