-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFunc_Get-OneDriveContent.ps1
94 lines (82 loc) · 3.23 KB
/
Func_Get-OneDriveContent.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
################################################################################
# Author : Antony Onipko
# Copyright : (c) 2016 Antony Onipko. All rights reserved.
################################################################################
# This work is licensed under the
# Creative Commons Attribution-ShareAlike 4.0 International License.
# To view a copy of this license, visit
# https://creativecommons.org/licenses/by-sa/4.0/
################################################################################
Function Get-OneDriveContent {
<#
.SYNOPSIS
Downloads the contents of a file and saves it to the specified destination. If no destination is specified, the current directory is used.
.EXAMPLE
Get-OneDriveContent -Path "Documents\onedrive file.txt"
.EXAMPLE
Get-OneDriveContent -ItemId "1234ABC!123"
#>
[CmdletBinding(DefaultParameterSetName='Item Path')]
[Alias('odgc')]
[OutputType()]
Param
(
# API resource path.
[Parameter(Mandatory=$True,
Position=1,
ValueFromPipeline=$True,
ValueFromPipelineByPropertyName=$True,
ParameterSetName='Item Path')]
[Alias('ApiUrl', 'Resource')]
[string]$Path,
# API item ID.
[Parameter(Mandatory=$True,
Position=1,
ValueFromPipelineByPropertyName=$True,
ParameterSetName='Item ID')]
[Alias('id')]
[string]$ItemId,
# The path to the destination directory / file.
[Parameter(Mandatory=$False,
Position=2)]
[string]$Destination
)
Begin {
if ($Destination) {
if (!(Test-Path $Destination)) {
Write-Error "The destination directory '$Destination' does not exist."
break
}
} else {
$Destination = Get-Location
}
}
Process {
if ($ItemId) {
$item = Get-OneDriveItem -ItemId $ItemId
} else {
$item = Get-OneDriveItem -Path $Path
}
if ($item.Type -eq 'folder') {
$newDestination = Join-Path $Destination $item.Name
if (Test-Path $newDestination) {
Write-Error "Destination directory '$newDestination' already exists."
} else {
New-Item -ItemType Directory -Path $newDestination | Out-Null
if (Test-Path $newDestination) {
Get-OneDriveChildItem -id $item.id | % {
Get-OneDriveContent -ItemId $_.id -Destination $newDestination
}
} else {
Write-Warning "Unable to create new directory '$newDestination'."
}
}
} else {
$outFile = Join-Path $Destination $item.Name
$dloadPath = joinPath $PSOD.drive.itemRoot $item.Id
$dloadPath = joinPath $dloadPath 'content'
Invoke-OneDriveApiCall -Path $dloadPath -OutFile $outFile
}
}
}
Export-ModuleMember -Function 'Get-OneDriveContent' -Alias 'odgc'