如何将我的UWP应用添加到可以访问文件系统的Windows 10应用列表中?

时间:2019-02-11 18:41:36

标签: c# uwp windows-10 win-universal-app windows-10-universal

如何将UWP C#应用程序添加到Windows 10文件系统隐私设置中,以允许应用程序的broadFileSystemAccess访问文件系统?

当我打开文件系统隐私设置时,在“选择哪些应用程序可以访问您的文件系统”下,我不知道如何将我的应用程序添加到此处列出的应用程序中。

清单验证错误(由部署应用程序引起)...

  

验证错误。错误C00CE014:应用清单验证错误:   应用清单必须按照架构有效:第50行,第6列,原因:   元件   '{http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities}能力'   根据父元素的内容模型是意外的   “ {http://schemas.microsoft.com/appx/manifest/foundation/windows10}个功能”。   期望:   {http://schemas.microsoft.com/appx/manifest/foundation/windows10}设备功能。移动   上载程序C:\ PRIMARY \ WORK \ MOBILE   UPLOADER \ Samples \ CameraFrames \ cs \ bin \ x64 \ Debug \ AppxManifest.xml

从答案1中添加推荐后,清单中的鼠标悬停错误弹出窗口的屏幕截图... enter image description here

因此,我按照上面的“期望”建议更改了清单,进行了部署,并得到了以下错误:

  

错误DEP0700:应用程序注册失败。 [0x80073CF6]   AppxManifest.xml(52,6):错误0x80070002:无法映射   broadFileSystemAccess设备接口的知名设备名称   的GUID   Microsoft.SDKSamples.CameraFrames.CS_1.0.0.0_x64__8wekyb3d8bbwe   包。检查设备名称是否正确。手机上传器

我该如何纠正?

最新的应用清单...

<?xml version="1.0" encoding="utf-8"?>
<Package xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities" 
                 xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" 
    xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" 
    xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" 
    IgnorableNamespaces="uap mp">
  <Identity Name="Microsoft.SDKSamples.CameraFrames.CS" Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US" Version="1.0.0.0" />
  <mp:PhoneIdentity PhoneProductId="2344b9de-5071-42a6-8873-7fdeb38d53dd" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
  <Properties>
    <DisplayName>Camera Frames C# Sample</DisplayName>
    <PublisherDisplayName>Microsoft Corporation</PublisherDisplayName>
    <Logo>Assets\StoreLogo-sdk.png</Logo>
  </Properties>
  <Dependencies>
    <TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.15063.0" MaxVersionTested="10.0.17134.0" />
  </Dependencies>
  <Resources>
    <Resource Language="x-generate" />
  </Resources>
  <Applications>
    <Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="CameraFrames.App">
      <uap:VisualElements DisplayName="MOVANO System Hub Camera  interface" Square150x150Logo="Assets\SquareTile-sdk.png" Square44x44Logo="Assets\SmallTile-sdk.png" Description="Camera Frames C# Sample" BackgroundColor="#00b2f0">
        <uap:SplashScreen Image="Assets\Splash-sdk.png" />
        <uap:DefaultTile>
          <uap:ShowNameOnTiles>
            <uap:ShowOn Tile="square150x150Logo" />
          </uap:ShowNameOnTiles>
        </uap:DefaultTile>
      </uap:VisualElements>
      <Extensions>
        <uap:Extension Category="windows.fileTypeAssociation">
          <uap:FileTypeAssociation Name="access">
            <uap:SupportedFileTypes>
              <uap:FileType>.txt</uap:FileType>
              <uap:FileType>.bin</uap:FileType>
            </uap:SupportedFileTypes>
          </uap:FileTypeAssociation>
        </uap:Extension>
      </Extensions>
    </Application>
  </Applications>
  <Capabilities>
    <Capability Name="privateNetworkClientServer" />
    <Capability Name="internetClientServer" />
    <DeviceCapability Name="microphone" />
    <DeviceCapability Name="webcam" />
        <DeviceCapability xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities" 
                                         Name="broadFileSystemAccess"/>  
    </Capabilities>
</Package>

UWP项目属性

enter image description here

2 个答案:

答案 0 :(得分:4)

将此行添加到应用的清单文件中并部署您的应用。然后它将显示在隐私设置的该部分中:

<rescap:Capability xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities" Name="broadFileSystemAccess"/>

答案 1 :(得分:0)

答案:Visual Studio>构建>部署 然后,按Window键并搜索“文件系统隐私设置” 您会看到自己的应用。

您可以启用它,以便docs