在onfileactivated方法读取文件时出现未经授权的异常

本文关键字:授权 异常 方法 onfileactivated 读取 文件 | 更新日期: 2023-09-27 18:26:01

当用户通过将文件类型与我的应用程序关联来从任何位置选择文件时,我正试图复制PDF文件。

不幸的是,我在尝试复制文件时遇到了未经授权的异常

  async  protected override void OnFileActivated(FileActivatedEventArgs e)
    {//IReadOnlyList<IStorageItem>

        Frame rootFrame = Window.Current.Content as Frame;
        // Do not repeat app initialization when the Window already has content,
        // just ensure that the window is active
        if (rootFrame == null)
        {
            // Create a Frame to act as the navigation context and navigate to the first page
            rootFrame = new Frame();
            rootFrame.NavigationFailed += OnNavigationFailed;
            if (e.PreviousExecutionState == ApplicationExecutionState.Terminated)
            {
                //TODO: Load state from previously suspended application
            }
            // Place the frame in the current Window
            Window.Current.Content = rootFrame;
        }
        if (rootFrame.Content == null)
        {
            if (!rootFrame.Navigate(typeof(MainPage)))
            {
                throw new Exception("Failed to create initial page");
            }
        }
        StorageFolder magazinefolder = await ApplicationData.Current.LocalFolder.CreateFolderAsync("pdffolder", CreationCollisionOption.OpenIfExists);
        IAsyncAction asyncAction = Windows.System.Threading.ThreadPool.RunAsync(
(workItem) =>
{


    foreach (IStorageItem tm in e.Files)
    {
        File.Copy(tm.Path, magazinefolder.Path);
    }

    //   this.loadlibrary();



});
        var p = rootFrame.Content as MainPage;
        // p.AddFileCall(e.Files);
        // Ensure the current window is active
        Window.Current.Activate();
    }

在onfileactivated方法读取文件时出现未经授权的异常

我们可以直接将文件作为StorageFile,而不是将文件作为IstorageItem,这将解决问题

 async public void AddFileCall(Windows.ApplicationModel.Activation.FileActivatedEventArgs e)
    {
        StorageFolder magazinefolder = await ApplicationData.Current.LocalFolder.CreateFolderAsync(Constants.MagFolder, CreationCollisionOption.OpenIfExists);
        foreach (StorageFile file in e.Files)
        {
            await file.CopyAsync(magazinefolder,file.Name,NameCollisionOption.GenerateUniqueName);
        }
        MessageDialog Sucess = new MessageDialog("File Imported", "Thank You");
        await Sucess.ShowAsync();
        this.loadlibrary();
    }