export async function azFilePull()

in src/shared.ts [59:74]


export async function azFilePull(
    workspaceName: string,
    storageAccountName: string,
    storageAccountKey: string,
    fileShareName: string,
    cloudShellFileName: string): Promise<void> {

    const fs = azureStorage.createFileService(storageAccountName, storageAccountKey);
    const cf = new CloudFile(
        workspaceName,
        fileShareName,
        cloudShellFileName,
        FileSystem.cloudshell);

    await readFile(cf, fs);
}