Private/Functions.Helper.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
Function CheckPath { Param( [Parameter(Mandatory)] [string]$Path ) if (-not (Test-Path -Path $Path)) { Throw ($Script:ExceptionList.PathNotFound -f $Path) } } Function Get-CurrentAppConfig { Param( [Parameter(Mandatory)] [string]$ProfilePath ) Get-Content -Path $ProfilePath -Raw | ConvertFrom-Json } |