Skip to content

Commit 8842dad

Browse files
authored
Fix: Fixed issue where file operations didn't work in AppData (#10865)
1 parent 9ef96d1 commit 8842dad

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/Files.App (Package)/Package.appxmanifest

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,20 @@
22
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
33
xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest"
44
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
5+
xmlns:desktop6="http://schemas.microsoft.com/appx/manifest/desktop/windows10/6"
56
xmlns:desktop4="http://schemas.microsoft.com/appx/manifest/desktop/windows10/4"
67
xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10"
78
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
89
xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3"
910
xmlns:uap4="http://schemas.microsoft.com/appx/manifest/uap/windows10/4"
1011
xmlns:uap5="http://schemas.microsoft.com/appx/manifest/uap/windows10/5"
11-
IgnorableNamespaces="uap uap5 mp rescap desktop4 desktop">
12+
IgnorableNamespaces="uap uap5 mp rescap desktop6 desktop4 desktop">
1213
<Identity Name="FilesDev" Publisher="CN=Files" Version="2.4.9.0" />
1314
<Properties>
1415
<DisplayName>Files - Dev</DisplayName>
1516
<PublisherDisplayName>Yair A</PublisherDisplayName>
1617
<Logo>Assets\AppTiles\Dev\StoreLogo.png</Logo>
18+
<desktop6:FileSystemWriteVirtualization>disabled</desktop6:FileSystemWriteVirtualization>
1719
</Properties>
1820
<Dependencies>
1921
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.19041.0" MaxVersionTested="10.0.22621.0" />
@@ -126,6 +128,8 @@
126128
<rescap:Capability Name="runFullTrust" />
127129
<rescap:Capability Name="broadFileSystemAccess" />
128130
<rescap:Capability Name="allowElevation"/>
131+
<!--The unvirtualizedResources capability is used to support file operations in the AppData directory-->
132+
<rescap:Capability Name="unvirtualizedResources" />
129133
<!--The packageManagement capability is used to download updates in the sideload version of Files. We only use
130134
this capability in the sideload version and remove it when compiling the store vesion in Azure DevOps-->
131135
<rescap:Capability Name="packageManagement"/>

0 commit comments

Comments
 (0)