I'm working on a UWP app that needs to create a file outside of local storage. I use a folder picker to let the user select the output director, then I store that selection using LocalSettings
and add the folder to the FutureAccessList
.
Then, I use StorageFile.CreateFileAsync
to create the file (which is successful, no errors or exceptions).
The problem is, the file is created with blocking, as you can see in the file properties dialog:
Is there a specific way to create the file without this, or a way to unblock using C#?
I want to share some of my finding here:
I test with code to get this extended property:
I always get null value. Per my understanding this may related to permission.
So finally I think if you need to modify this feature, you may have to consider using desktopbridge related technology to use FullTrustProcessLauncher. In this way, you may be able to run win32 process to modify your file's property.