如何获取目录的文件名并写在按钮或标签中?

How to get file name of directory and written in button or label?

如何找到目录的文件名?

我想自定义标签或按钮。

示例:LigaBBVA.jpg然后在按钮或标签上,LigaBBVA 也将不带扩展名。

您可以使用 System.IO.Path class 及其方法 GetFileNameWithoutExtension

Dim sampleImgPath = "C:\Images\Liga BBVA.jpg"
Dim nameOnly = Path.GetFileNameWithoutExtension(sampleImgPath) ' Liga BBVA

How can i get the directory name of a given directory-path?

那么你需要使用System.IO.Path.GetDirectoryName.