gpt4 book ai didi

powershell - PowerShell 是否支持 HashTable 序列化?

转载 作者:行者123 更新时间:2023-12-03 11:17:35 25 4
gpt4 key购买 nike

如果我想将一个对象/HashTable 写入磁盘并稍后再次加载它,PowerShell 是否支持?

最佳答案

当然,您可以使用 PowerShell 的 native CliXml format :

@{
a = 1
b = [pscustomobject]@{
prop = "value"
}
} | Export-Clixml -Path hashtable.ps1xml

使用 Import-CliXml 反序列化:
PS C:\> $ht = Import-CliXml hashtable.ps1xml
PS C:\> $ht['b'].prop -eq 'value'
True

关于powershell - PowerShell 是否支持 HashTable 序列化?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60621582/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com