mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Ansible.ModuleUtils.FileUtil - Add ability to test non file system provider paths (#39200)
This commit is contained in:
@@ -19,6 +19,10 @@ Function Test-AnsiblePath {
|
||||
$file_attributes = [System.IO.File]::GetAttributes($Path)
|
||||
} catch [System.IO.FileNotFoundException], [System.IO.DirectoryNotFoundException] {
|
||||
return $false
|
||||
} catch [NotSupportedException] {
|
||||
# When testing a path like Cert:\LocalMachine\My, System.IO.File will
|
||||
# not work, we just revert back to using Test-Path for this
|
||||
return Test-Path -Path $Path
|
||||
}
|
||||
|
||||
if ([Int32]$file_attributes -eq -1) {
|
||||
|
||||
Reference in New Issue
Block a user