Filesystem.h (593B)
1 // Copyright (c) Microsoft Corporation. 2 // Licensed under the MIT License. 3 #pragma once 4 #include <winget/Filesystem.h> 5 6 namespace winrt::Microsoft::Management::Configuration::implementation 7 { 8 // Paths used by configuration. 9 enum class PathName 10 { 11 // Local state root for configuration. 12 LocalState, 13 }; 14 15 // Gets the PathDetails used for the given path. 16 // This is exposed primarily to allow for testing, GetPathTo should be preferred. 17 AppInstaller::Filesystem::PathDetails GetPathDetailsFor(PathName path, bool forDisplay = false); 18 }