Functions/Export-WorkspaceNotebooks.ps1
Function Export-WorkspaceNotebooks { [cmdletbinding()] Param( [string] $localOutputPath, [string] $exportPath ) Write-Host "Downloading the folder $exportPath to $localOutputPath" Export-DatabricksFolder -LocalOutputPath $localOutputPath -ExportPath $exportPath -Verbose } |