PoshCode Archive  Artifact [9f51006637]

Artifact 9f51006637f6b168cf7b65363f6c5250bb26d070880b0af40125ddc8679589d3:

  • File Receive-Stream.ps1 — part of check-in [10d0a308e9] at 2018-06-10 13:09:51 on branch trunk — A simple stream-reader implementation suitable for simple interactive script task … (user: Joel Bennett size: 1692)

# encoding: ascii
# api: powershell
# title: Receive-Stream
# description: A simple stream-reader implementation suitable for simple interactive script task …
# version: 0.1
# type: function
# author: Joel Bennett
# license: CC0
# function: Receive-Stream
# x-poshcode-id: 2414
# x-archived: 2017-04-09T11:51:55
# x-published: 2011-12-18T15:40:00
#
#
function Receive-Stream {
#.Synopsis
#  Read a stream to the end and close it
#.Description
#  Will read from a byte stream and output a string or a file
#.Param reader
#  The stream to read from
#.Param fileName
#  A file to write to. If this parameter is provided, the function will output to file
#.Param encoding
#  The text encoding, if you want to override the default.
param( [System.IO.Stream]$reader, $fileName, $encoding = [System.Text.Encoding]::GetEncoding( $null ) )
   
	if($fileName) {
		try {
			$writer = new-object System.IO.FileStream $fileName, ([System.IO.FileMode]::Create)
		} catch {
			Write-Error "Failed to create output stream. The error was: '$_'"
			return $false
		}
	} else {
		[string]$output = ""
	}
	   
	[byte[]]$buffer = new-object byte[] 4096
	[int]$total = [int]$count = 0

	try {
		$count = $reader.Read($buffer, 0, $buffer.Length)

		while ($count -gt 0) {
			if($fileName) {
				$writer.Write($buffer, 0, $count)
			} else {
				$output += $encoding.GetString($buffer, 0, $count)
			}
			$count = $reader.Read($buffer, 0, $buffer.Length)
		} 
	} catch {
		Write-Error "Failed to write stream. The error was: '$_'"
		return $false
	}

	$reader.Close()
	$writer.Close()
	if(!$fileName) 
		{ return $output }
	else
		{ return $true }
}