This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* | |
* API method for retrieving Product and SKU features | |
* | |
* Autor: https://github.com/KEMBL | |
* | |
* License: MIT | |
* | |
* Version: 1.0.0 alpha |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Metro configuration for React Native | |
* | |
* @format | |
*/ | |
const fs = require('fs'); | |
const path = require('path'); | |
const config = { | |
projectRoot: path.resolve(__dirname), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ORIGINAL | |
public async Task UploadBlobFromFile(string filePath, string containerName, string destinationPath) | |
{ | |
if (!File.Exists(filePath)) | |
{ | |
throw new FileNotFoundException(filePath); | |
} | |
CloudBlobContainer container = await GetBlobContainer(containerName); |