Public/Test-WinSCPPath.ps1
Function Test-WinSCPPath { [CmdletBinding( HelpUri = 'https://github.com/dotps1/WinSCP/wiki/Test-WinSCPPath' )] [OutputType( [Bool] )] Param ( [Parameter( Mandatory = $true, ValueFromPipeline = $true )] [ValidateScript({ if ($_.Opened) { return $true } else { throw 'The WinSCP Session is not in an Open state.' } })] [WinSCP.Session] $WinSCPSession, [Parameter( Mandatory = $true, ValueFromPipelineByPropertyName = $true )] [String[]] $Path ) Begin { $sessionValueFromPipeLine = $PSBoundParameters.ContainsKey('WinSCPSession') } Process { foreach($item in (Format-WinSCPPathString -Path $($Path))) { try { $WinSCPSession.FileExists($item) } catch { Write-Error -Message $_.ToString() } } } End { if (-not ($sessionValueFromPipeLine)) { Remove-WinSCPSession -WinSCPSession $WinSCPSession } } } |