Power BI Connector for GitHub

Build 24.0.9062

DownloadFile

Download a file from a given repository.

Sample

The 'Path' parameter is required, and must be relative to the repository root without a preceding '/'.

EXECUTE [Information].[DownloadFile] LocalPath='/tmp/file.txt', Repository='myRepository', Branch='main', Path='ReadMe.md'
Provide a value for OwnerLogin to download files form repositories of other owners.
EXECUTE [Information].[DownloadFile] LocalPath='C:/Users/CData/Desktop/file.txt', OwnerLogin='cdata' Repository='publicRepository', Branch='main', Path='src/Main.java'

Input

Name Type Description
Path String The file path, relative to the repository root.
Repository String The repository to download the file from.
OwnerLogin String The owner of the repository.
Branch String The branch to download the file from. Defaults to 'main'.

デフォルト値はmainです。

LocalPath String The absolute path where the file will be saved.

Result Set Columns

Name Type Description
Success Boolean Indicates whether or not the operation executed successfully.
Details String Any extra details on the operation's execution.
FileData String If the LocalPath and FileStream inputs are empty, file data will be output as BASE64.

Copyright (c) 2024 CData Software, Inc. - All rights reserved.
Build 24.0.9062