Здравствуйте,
Посмотрите в официальной статье для maui: Запрос разрешений
Этот браузер больше не поддерживается.
Выполните обновление до Microsoft Edge, чтобы воспользоваться новейшими функциями, обновлениями для системы безопасности и технической поддержкой.
I have MAUI application that deletes file. But I can get UnathorizedException, because file is secured. I want a dialog to appear for user "Application NAME_OF_MY_APP wants to delete FILE", like Finder does when you want to delete some protected file, and user authenticates and permit it. How can I implement this functionality in MAUI?
if (Directory.Exists(Path.Combine(newFolderPath, "FirstDigitalSigner.app", "Contents", "Frameworks", "libSkiaSharp.framework", "Versions", "Current"))) {
Directory.Delete(Path.Combine(newFolderPath, "FirstDigitalSigner.app", "Contents", "Frameworks", "libSkiaSharp.framework", "Versions", "Current"), true); // Here I am getting UnathorizedException because programm does not authorized to do it. How to request authorization for it?
}
Здравствуйте,
Посмотрите в официальной статье для maui: Запрос разрешений