/// <summary>
 /// Downloads all the asset files in the <paramref name="asset"/> to the <paramref name="folderPath"/>.
 /// </summary>
 /// <param name="context">The <see cref="CloudMediaContext"/> instance.</param>
 /// <param name="asset">The <see cref="IAsset"/> instance where to download the asset files.</param>
 /// <param name="folderPath">The path to the folder where to download the asset files in the <paramref name="asset"/>.</param>
 public static void DownloadAssetFilesToFolder(this CloudMediaContext context, IAsset asset, string folderPath)
 {
     context.DownloadAssetFilesToFolder(asset, folderPath, null);
 }