dsofile.dll 32bit版本,但支持在win10/11下兼容注册,已测试可用。这个是2.0.1版本
2022-05-13 19:01:08 41KB 源码软件
1
DSOFile 修改文件文件摘要 System.Diagnostics.Process p = new System.Diagnostics.Process(); p.StartInfo.FileName = "regsvr32"; p.StartInfo.Arguments = "DSOFile.dll"; p.Start(); p.WaitForExit(); p.Close(); p.Dispose(); string path = @"C:\Documents and Settings\Administrator\桌面\Image\5-6-7-8.24.jpg"; DSOFile.OleDocumentProperties dso = new DSOFile.OleDocumentProperties(); dso.Open(path, false, DSOFile.dsoFileOpenOptions.dsoOptionOpenReadOnlyIfNoWriteAccess); dso.SummaryProperties.Title = "This is the Title"; dso.SummaryProperties.Subject = "This is the Subject"; dso.SummaryProperties.Company = "RTDev"; dso.SummaryProperties.Author = "Ron T."; dso.Save();
2022-03-30 16:20:41 62KB DSOFile 修改文件摘要 修改文件备注
1
Dsofile 实际上是 Microsoft Developer Support OLE File Property Reader 2.0 Sample 的文件名 (Dsofile.dll)。Dsofile是一种对脚本编写者极其有用的工具:它为读取和写入您的所有文件的摘要信息属性集提供了一种快速而简便的方法。
2022-03-07 22:13:38 41KB dsofile.dll 文档 摘要信息 dll
1
基于微软提供的DSOFile.dll可以修改文件属性信息和备注信息,但微软直接下载的版本不可以编译为X64,否则提示控件注册失败,或者提示【检索 COM 类工厂中 CLSID 为 {58968145-CF05-4341-995F-2EE093F6ABA3} 的组件时失败,原因是出现以下错误: 80040154。】 本源码含X64版本的DSOFILE.dll,是本人基于源码以X64为目标重新编译的。 源码演示了如何修改文件属性信息,以及如何读取修改后的文件属性信息。
2022-03-04 09:39:19 240KB DSOFile.dll 64位 X64 源码DEMO
1