@ -82,7 +82,7 @@ function Present($path, $regexp, $line, $insertafter, $insertbefore, $create, $b
# Check if path exists. If it does not exist, either create it if create == "yes"
# was specified or fail with a reasonable error message.
If ( -not ( Test-Path - Path $path ) ) {
If ( -not ( Test-Path - Literal Path $path ) ) {
If ( -not $create ) {
Fail-Json @ { } " Path $path does not exist ! " ;
}
@ -218,7 +218,7 @@ function Present($path, $regexp, $line, $insertafter, $insertbefore, $create, $b
function Absent($path , $regexp , $line , $backup , $validate , $encodingobj , $linesep , $check_mode , $diff_support ) {
# Check if path exists. If it does not exist, fail with a reasonable error message.
If ( -not ( Test-Path - Path $path ) ) {
If ( -not ( Test-Path - Literal Path $path ) ) {
Fail-Json @ { } " Path $path does not exist ! " ;
}
@ -316,7 +316,7 @@ $encoding = Get-AnsibleParam -obj $params -name "encoding" -type "str" -default
$newline = Get-AnsibleParam -obj $params -name " newline " -type " str " -default " windows " -validateset " unix " , " windows " ;
# Fail if the path is not a file
If ( Test-Path - Path $path -PathType " container " ) {
If ( Test-Path - Literal Path $path -PathType " container " ) {
Fail-Json @ { } " Path $path is a directory " ;
}
@ -339,7 +339,7 @@ If ($encoding -ne "auto") {
# Otherwise see if we can determine the current encoding of the target file.
# If the file doesn't exist yet (create == 'yes') we use the default or
# explicitly specified encoding set above.
ElseIf ( Test-Path - Path $path ) {
ElseIf ( Test-Path - Literal Path $path ) {
# Get a sorted list of encodings with preambles, longest first
$max_preamble_len = 0 ;
@ -356,7 +356,7 @@ ElseIf (Test-Path -Path $path) {
}
# Get the first N bytes from the file, where N is the max preamble length we saw
[ Byte[] ] $bom = Get-Content -Encoding Byte -ReadCount $max_preamble_len -TotalCount $max_preamble_len - Path $path ;
[ Byte[] ] $bom = Get-Content -Encoding Byte -ReadCount $max_preamble_len -TotalCount $max_preamble_len - Literal Path $path ;
# Iterate through the sorted encodings, looking for a full match.
$found = $false ;