Package.MutablePath Property

Definition

Gets the current package's path in the mutable folder for the installed package, if the app is declared to be mutable in its package manifest.

public:
 property Platform::String ^ MutablePath { Platform::String ^ get(); };
winrt::hstring MutablePath();
public string MutablePath { get; }
var string = package.mutablePath;
Public ReadOnly Property MutablePath As String

Property Value

String

Platform::String

winrt::hstring

The location of the mutable folder for the installed package.

Windows requirements

Device family
Windows 10, version 2004 (introduced in 10.0.19041.0)
API contract
Windows.Foundation.UniversalApiContract (introduced in v10.0)

Remarks

If the app is declared to be mutable by including the windows.mutablePackageDirectories extension in its package manifest, it exposes a folder under C:\Program Files\ModifiableWindowsApps where the contents of the application's install folder are projected so that users can modify the installation files. This folder is called the mutable folder. The mutable folder feature is currently available only for certain types of desktop PC games that are published by Microsoft and our partners, and it enables these types of games to support mods.

Applies to

See also