请教用如何用for each获取resources下的所有的文件名并显示在listbox中
本人刚接触resources内容,不太精通,特来请教
listbox.items.clear()
Dim d As New ("D:\resources\") '这里是你的文件夹路径
Dim f As
For Each f In d.GetFiles
listbox.items.add(f.name)
Next