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
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