Posted On June 13, 2020

PowerShell: Stream Reader

kimconnect 0 comments
blog.KimConnect.com >> Codes >> PowerShell: Stream Reader

Have you ran into scripting situations where opening a file would result in locking from being editable by other users or processes? As a standard practice, it’s a good idea to have a habit of setting the correct intention of accessing a file using this example sequence:

$file='someXmlFile.xml'
$reader = New-Object System.IO.StreamReader($file)
$xml = $reader.ReadToEnd() # cast the variable as XML so PowerShell would handle it correctly
$reader.Close()

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Windows UAC Error This App has been blocked for your protection mmc.exe taskschd.msc

Error Message: User Account ControlThis App has been blocked for your protection.A administrator has blocked…

Reset Windows Update Tool

:: ==================================================================================:: Re-posting this here because I admire the good work by Sir Manuel Gil::…

BASH: Basic AWK Training

At first, AWK resembles the first three letter of 'awkward'. Nope, it's a scripting language…