在VBS代码下方将.xls转换为.csv。
Set oBook = oExcel.Workbooks.Open(sfile)
oBook.SaveAs fulldest, 6
oBook.Close False
如果适用于大多数文件,但其中一个文件通常为Excel found unreadable content in filename.xls'. do you want to recover the contents of this workbook ? If you trust the source of this workbook, click Yes.
。
当为此文件执行.Workbooks.Open
方法时,我得到Unable to get the Open property of the Workbooks
。
我试了oExcel.Workbooks.Open(sfile, xlRepairFile)
但没有成功。