Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的本地机器上有一个现有的 excel 文件。我需要创建它的副本并将其保存在其他位置我如何使用 Open XML 来执行此操作。
我不确定您为什么要为此使用 Open XML,它可以使用 File.Copy 轻松完成,如下所示:
using System.IO; namespace ConsoleApplication1 { class Program { static void Main() { File.Copy(@"C:\whatever\original.xlsx", @"C:\whatever\new.xlsx"); } } }