0

我有一段代码可以搜索快捷方式并将它们放入列表框中。如何修改它以显示没有.lnk扩展名的信息

For Each foundFile As String In My.Computer.FileSystem.GetFiles("Z:\SiteServices\Maintenance\Maintenance Support Folder\Equipment Specific Information\DES", Microsoft.VisualBasic.FileIO.SearchOption.SearchTopLevelOnly, "*" & txtSearch.Text & "*" & ".lnk")
    ListBox1.Items.Add(foundFile)
Next
4

1 回答 1

4

看看使用Path.GetFileNameWithoutExtension 方法

返回指定路径字符串的文件名,不带扩展名。

于 2013-08-28T13:02:47.677 回答