Writing a file into the Downloads folder with UWP goes into Isolated Storage?
问题 I need to create a file in the downloads folder for a UWA on Windows 10 and copy the content of an existing file into it. I use the following code: StorageFile cleanFile = await Windows.Storage.DownloadsFolder.CreateFileAsync(cleanFileName); await file.CopyAndReplaceAsync(cleanFile); This works ok, but the folder the file is stored is this: C:\Users\MyUser\Downloads\e15e6523-22b7-4188-9ccf-8a93789aa8ef_t8q2xprhyg9dt!App\WordComment-clean.docx I assume this is some type of Isolated Storage.