如何从ListBox中删除扩展

时间:2013-08-28 13:00:12

标签: vb.net listbox

我有一段代码可以搜索快捷方式并将它们放入列表框中。如何修改它以显示没有.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

1 个答案:

答案 0 :(得分:4)

查看使用Path.GetFileNameWithoutExtension Method

返回没有扩展名的指定路径字符串的文件名。