我必须使用C#和Microsoft.Office.Interop.Excel.Worksheet
提取excel文件的创建日期。
我将使用
object props = myworkbook.CustomDocumentProperties;
现在我不确定如何从该对象获取创建日期。
答案 0 :(得分:1)
可以在BuiltinDocumentProperties属性中找到Creation Date
,该属性返回一个Microsoft.Office.Core.DocumentProperties
集合,该集合表示工作簿的所有内置文档属性。
Microsoft.Office.Core.DocumentProperties properties;
properties = (Microsoft.Office.Core.DocumentProperties)Globals.ThisWorkbook.BuiltinDocumentProperties;
Microsoft.Office.Core.DocumentProperty prop;
prop = properties["Creation Date"];
有关更多信息,请参见How to: Read from and write to document properties。