We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
OpenXML.get_Created
1 parent 7c29864 commit bed2041Copy full SHA for bed2041
Types/OpenXML/get_Created.ps1
@@ -0,0 +1,10 @@
1
+<#
2
+.SYNOPSIS
3
+ Gets OpenXML creation time
4
+.DESCRIPTION
5
+ Gets the time an OpenXML file was created, according to core document metadata.
6
+.EXAMPLE
7
+ Get-OpenXML ./Examples/Blank.docx | Select-Object -ExpandProperty Created
8
+#>
9
+param()
10
+$this.Parts.'/docProps/core.xml'.content.coreProperties.created.innerText -as [DateTime]
0 commit comments