powershell 2.0 下载 bootcdn 资源

Posted _st

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 2.0 下载 bootcdn 资源相关的知识,希望对你有一定的参考价值。

powershell 2.0 , win 7 以上操作系统可用。

[System.Reflection.Assembly]::LoadWithPartialName("System.Web.Extensions")

$path = "D:front"
$library = "element-ui"

$json = "[]"
$json = $client.DownloadString("https://api.bootcdn.cn/libraries/"+ $library +".json")
$ser = New-Object System.Web.Script.Serialization.javascriptSerializer
$obj = $ser.DeserializeObject($json)
##$info = ConvertFrom-Json -InputObject $json
if($obj.assets.length){
    $array = $obj.assets[0].files
    $version = $obj.assets[0].version
    $client = new-object System.Net.WebClient
    foreach ($src in $array){
    $url = "https://cdn.bootcss.com/"+ $library +"/" + $version +"/" + $src 
    $des = ( $path + $library + "@" + $version  +"/" + $src ).replace("/", "")
    if((Test-Path $des.Substring(0,$des.LastIndexOf(‘‘)) ) -eq $False)
    {
        New-Item $des.Substring(0,$des.LastIndexOf(‘‘)) -type directory
    }
    $client.DownloadFile($url,$des)
    }
}

 

以上是关于powershell 2.0 下载 bootcdn 资源的主要内容,如果未能解决你的问题,请参考以下文章

如何将 PowerShell 版本从 2.0 升级到 3.0

前端cdn库推荐

在2.0模式下运行PowerShell终端

不支持PowerShell 2.0版本(don't support PowerShell version 2.0. )

无法使用 Powershell 2.0 压缩文件

PowerShell 2.0 ConvertFrom-Json 和 ConvertTo-Json 实现