Types/OpenPackage/get_FileList.ps1
|
<# .SYNOPSIS Gets OpenPackage file list .DESCRIPTION Gets the list of files in an OpenPackage. .LINK https://learn.microsoft.com/en-us/dotnet/api/system.io.packaging.package.getparts?wt.mc_id=MVP_321542 #> [OutputType([string[]])] param() @($this.GetParts()).Uri -as [string[]] |