可能就是你打开了多个Excel进程没有关掉出现的问题。
编程:对文件操作的时候要养成关掉进程的习惯
在c#中操作完后关闭资源的代入如下:
System.Runtime.InteropServices.Marshal.ReleaseComObject((objec)excelSheet);
System.Runtime.InteropServices.Marshal.ReleaseComObject((objec)excelBook);
excelApp.Quit();
System.Runtime.InteropServices.Marshal.ReleaseComObject((objec)excelApp);
System.GC.Collect();