For example: C:\Users\gabriel\Desktop\
There it creates the folder on the desktop
I do not have code, and I have no idea how to do it. And I do not want to use FolderPicker, I want to define in the folder path code
For example: C:\Users\gabriel\Desktop\
There it creates the folder on the desktop
I do not have code, and I have no idea how to do it. And I do not want to use FolderPicker, I want to define in the folder path code
Generally speaking, UWP applications are sand-boxed for security, so you might not be able to interact with the filesystem in the way that you want.
If you have enough control over the target machine, you might be able to ensure that some console app or windows service is also running on the machine, and you can send http requests to that app so that it can do things that your UWP app can't.