您好,我想复制所有带有特定扩展名的文件。我已经尝试了一些东西,但它不起作用。在我的调试过程中,我得到一个异常“路径中使用了非法字符”我猜它不喜欢 *.xls 任何建议?
第一次尝试
My.Computer.FileSystem.CopyFile("C:\test\test\mxw\*.xls\", "C:\workorder1-23\workorder1-23\mxw\", True)
第二次尝试
For Each f In Directory.GetFiles("C:\test\test\mxw\*.xls\", CStr(SearchOption.AllDirectories))
If My.Computer.FileSystem.FileExists(f.ToString) Then
File.Copy("C:\test\test\mxw\*.xls\", "C:\workorder1-23\workorder1-23\mxw\", True)
End If
Next