Windows error 0x80070019, -2147024871

Detailed Error Information

SEEK[1]

MessageThe drive cannot locate a specific area or track on the disk.
Declared inwinerror.h

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode7 (0x007)
NameFACILITY_WIN32[2][1]
DescriptionThis region is reserved to map undecorated error codes into HRESULTs.[2][1]
Error Code25 (0x0019)

This is a Win32 error which has been mapped into an HRESULT. More information may be available in error 0x00000019.

Questions

0votes
2answers

Picking image from picture folder - "The drive cannot locate a specific area or track on the disk."

I am making an UWP app in C# where the user can choose to take a picture or use an exisiting one. The image picker is opened with this code FileOpenPicker picker = new FileOpenPicker(); picker.SuggestedStartLocation = PickerLocationId.PicturesLibrary; picker.FileTypeFilter.Add(".jpg"); picker.FileTypeFilter.Add(".jpeg"); picker.FileTypeFilter.Add(".png"); StorageFile file = await picker.PickSingleFileAsync(); On a physical device [...] read more
c#
image
mobile
camera
uwp

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0