Replies: 8 comments
-
Thanks for the report; will follow up internally. |
Beta Was this translation helpful? Give feedback.
-
@kevinguo305 can you include this in your shell discussions? |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
@ptorr-msft Are there any updates on this issue? What is a possible workaround can I use the older Win32 Apis in any way? |
Beta Was this translation helpful? Give feedback.
-
Currently there is no plan to fix this issue, sorry. If you describe the exact scenario you have we can look at possible workarounds. |
Beta Was this translation helpful? Give feedback.
-
@ptorr-msft The scenario is, I want to drag a file which isn't located locally. I need a way to drag a online file to the windows explorer, I can't find any other way than using the StorageFile.CreatedStreamedFileAsync, which shows the error as written in the summary. |
Beta Was this translation helpful? Give feedback.
-
We need to drag files from the app to explorer
|
Beta Was this translation helpful? Give feedback.
-
Thank you for the scenarios to help us better understand the motivations! We currently have our plans locked for the next several months, but we can consider this with our next wave of planning. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Proposal: Add support for StorageFile.CreateStreamedFileAsync to File Explorer and non-UWP apps
Summary
Currently creating a StorageFile using the
StorageFile.CreateStreamedFileAsync(...)
API and assigning this to a drag and drop data (e.g.DragStartingEventArgs.Data.SetStorageItems(new[] {StorageFile.CreateStreamedFileAsync(...)})
) and then dropping this in e.g. File Explorer and choosing Copy you will get an0x80004002 (no such interface supported)
error.This was reported already 3 years ago (https://social.msdn.microsoft.com/Forums/windows/en-US/a40ee176-69c0-4080-976f-d10330ece712/uwpcreatestreamedfileasync-causing-0x80004002-in-desktop-apps?forum=wpdevelop) but no solution has been posted as far as I can see.
Dragging the file to a UWP application works fine.
Rationale
Scope
Beta Was this translation helpful? Give feedback.
All reactions