使用Directory.GetFiles()方法遇到一些困难。它返回的信息看起来像是额外的回车符。结果是我无法使用它生成的字符串来打开它找到的任何文件。
我很想调查电话的超载情况。
For Each Filefound As String In Directory.GetFiles(FolderBox.Text, "*.xl*")
Debug.WriteLine(Filefound + "First")
ListBox1.Items.Add(Filefound)
我期望输出--D:\Folder\Timesheet.xlsx.
相反,我得到了-
D:\Folder
\Timesheet.xlsx.
我不确定如何继续。