Windows error 0x800300FC, -2147286788

Detailed Error Information

STG_E_INVALIDNAME[1]

MessageThe name %1 is not valid.
Declared inwinerror.h

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode3 (0x003)
NameFACILITY_STORAGE[2][1]
DescriptionThe source of the error code is OLE Storage.[2][1]
Error Code252 (0x00fc)

Questions

3votes
1answer

Set Windows File Properties Of Non Office Files

I want to set properties on files in .NET code. I have tried with DSOFile (v2.1) like this: var properties = new OleDocumentProperties(); try { properties.Open(filePath); properties.SummaryProperties.Title = "foo"; properties.Save(); } finally { properties.Close(); } It works fine with Office documents. (I've tested with Word and Excel.) However, I want [...] read more
.net
windows
file
metadata
0votes
1answer

C# .Net 3.5 : Extracting and binding Metadata to a file

INTRODUCTION I am trying to make a compression application. The current obstacle I am facing is that whenever I try to compress my file I take a byte array from the file and apply compression algorithm on the byte array itself because of which the metadata of file is lost. [...] read more
c#
.net-3.5
metadata

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