gpt4 book ai didi

c# - 无法使用 UWP 应用程序访问我系统上的 Word 文档

转载 作者:太空宇宙 更新时间:2023-11-03 14:41:59 24 4
gpt4 key购买 nike

我正在尝试使用 UWP 应用程序(通用 Windows)编辑现有的 Word 文档。但出于某种原因,我收到“文件不存在”错误。

我试过使用下面的代码访问word文档:

using(WordprocessingDocument wordDoc = WordprocessingDocument.Open("C:\\Users\\Public\\Desktop\\Doc1.docx", true))
{

}

System.IO.FileNotFoundException: '找不到文件'

最佳答案

根据评论部分的进一步说明,请参阅以下说明。

  1. 将您的 .DOCX 文件添加到项目中的 Assets 文件夹,并将构建操作设置为“Content”。

    Set Build action to Content

  2. 为了写入对文件的任何更改,我们需要将其复制到包 LocalFolder,然后从那里访问它。

    var file = await StorageFile.GetFileFromApplicationUriAsync(new Uri("ms-appx:///Assets/doc1.docx"));
    if (file != null)
    {
    //Copy .docx file to LocalFolder so we can write to it
    await file.CopyAsync(ApplicationData.Current.LocalFolder);
    String newFile = ApplicationData.Current.LocalFolder.Path + "/doc1.docx";

    using (WordprocessingDocument wordDoc = WordprocessingDocument.Open(newFile, true))
    {
    //Your code here
    }
    }

您需要对此进行一些扩展,以确保文件只复制到 LocalFolder 一次等,但您已经了解了基本概念。

关于c# - 无法使用 UWP 应用程序访问我系统上的 Word 文档,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56366569/

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