Azure에서 blob 저장소 컨테이너 및 개체를 관리.
azure-cli
의 일부 (az
라고도 함). 더 많은 정보: https://learn.microsoft.com/cli/azure/storage/blob.
az storage blob download --account-name {{스토리지_계정_이름}} --account-key {{스토리지_계정_키}} -c {{컨테이너_이름}} -n {{경로/대상/blob}} -f {{경로/대상/로컬_파일}}
az storage blob download-batch --account-name {{스토리지_계정_이름}} --account-key {{스토리지_계정_키}} -s {{컨테이너_이름}} -d {{경로/대상/remote}} --pattern {{파일이름_정규표현식}} --destination {{경로/대상/목적지}}
az storage blob upload --account-name {{스토리지_계정_이름}} --account-key {{스토리지_계정_키}} -c {{컨테이너_이름}} -n {{경로/대상/blob}} -f {{경로/대상/로컬_파일}}
az storage blob delete --account-name {{스토리지_계정_이름}} --account-key {{스토리지_계정_키}} -c {{컨테이너_이름}} -n {{경로/대상/blob}}
az storage blob generate-sas --account-name {{스토리지_계정_이름}} --account-key {{스토리지_계정_키}} -c {{컨테이너_이름}} -n {{경로/대상/blob}} --permissions {{permission_set}} --expiry {{Y-m-d'T'H:M'Z'}} --https-only