如何在PowerShell中下载整个dropbox目录?

时间:2017-08-01 11:45:21

标签: windows powershell windows-10 dropbox powershell-v5.0

我尝试过一个简单的事情:

wget https://www.dropbox.com/sh/dropboxStuff/dropboxStuff?dl=1 -O DirectoryName

但它正在下载一个zip文件。

  • 仅使用PowerShell下载和解压缩的最佳方法是什么 命令?
  • 这可以在一行中完成吗?

2 个答案:

答案 0 :(得分:3)

在Powershell v5中

document.addEventListener("resume", function() {
    console.log('EVENT resume');
    try{
        navigator.splashscreen.show();
    }
    catch(e){}
}, false);

了解你的PS vesion

Expand-Archive c:\a.zip -DestinationPath c:\a

如果您没有PS v5

$PSVersionTable.PSVersion 

来源:This Question

答案 1 :(得分:1)

使用PowerShell 5 Expand-Archive cmdlet在一行中执行此操作:

Invoke-WebRequest -Uri https://www.dropbox.com/sh/dropboxStuff/dropboxStuff?dl=1 -O temp.zip; Get-Item temp.zip | Expand-Archive -DestinationPath "FolderName"; Remove-Item temp.zip