Home > OS >  Is there a dialog for saving files in .NET MAUI?
Is there a dialog for saving files in .NET MAUI?

Time:05-24

.NET MAUI provides a FilePicker to show a native Dialog where you can pick a file from the device.

Is there a way to show a dialog for saving files? (where you can select a path and enter an filename, ...).

I didn't find anything in the .NET MAUI doc and read this StackOverflow question to implement a FolderPicker, but this is not exactly what I need.

CodePudding user response:

Right now there is no such thing, not that I know of anyway. We are considering adding something like that to the .NET MAUI Community Toolkit, you can find the discussion and even some implementation details here. Make sure to make your interest known there.

With the linked Stack Overflow question you should be well on your well to build something yourself as well, at least for Windows and macOS.

  • Related