For example im copying this specific file “container/dir/test1.txt” in vs code, but im unable to find a solution which does not require to download the file locally or in chunks… I tried azure sas url but that too streams data in chunks … so occupying memory
sas_url = generate_sas_url(blob_client, account_name, account_key)
or
s3_object = s3client.get_object(Bucket=aws_bucket_name, Key=blob_name)
file_content = s3_object['Body'].read()