gpt4 book ai didi

c# - 如何正确保存使用c#生成的excel文件?

转载 作者:太空宇宙 更新时间:2023-11-03 18:32:18 25 4
gpt4 key购买 nike

所以我使用标准接口(interface)。

using Excel = Microsoft.Office.Interop.Excel; 

//文件保存函数

 xlWorkBook.SaveAs("Bar Charts.xls", Excel.XlFileFormat.xlWorkbookNormal, misValue, misValue, misValue, misValue, Excel.XlSaveAsAccessMode.xlExclusive, misValue, misValue, misValue, misValue, misValue);
xlWorkBook.Close(true, misValue, misValue);
xlApp.Quit();

一切正常,但文件出现在 C:\Users\Dex\Documents 处。我怎样才能真正改变文件目的地?毕竟不想动它。

此处描述的功能 http://msdn.microsoft.com/en-us/library/microsoft.office.tools.excel.workbook.saveas.aspx , 但没有这样的参数。

最佳答案

您提供的链接包含答案:

Filename

The name of the file to be saved. You can include a full path; if you do not, Microsoft Office Excel saves the file in the current folder.

使用 @"C:\Another\Folder\Bar Charts.xls" 而不仅仅是 "Bar Charts.xls"。您还可以使用 Path.Combine如果您的文件夹已经在另一个字符串中:

xlWorkBook.SaveAs(Path.Combine(folder, "Bar Charts.xls"), ...

关于c# - 如何正确保存使用c#生成的excel文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20515949/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com