📜  powershell 读取 json 文件 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:14.952000             🧑  作者: Mango

代码示例1
# Use the Get-content cmdlet
Get-Content -Raw -Path .json | ConvertFrom-Json

# ConvertFrom-Json cmdlet syntax
ConvertFrom-Json
                [-InputObject] 
                [-AsHashtable]
                [-Depth ]
                [-NoEnumerate]
                []