content
{
"error": true,
"message": "The specified key does not exist."
}{% assign file_content = "file.csv" | content %}
{% if file_content.error %}
{% comment %}Error while reading file from storage{% endcomment %}
{{ file_content.message | log }}
{% else %}
{% comment %}Proceed with processing the file. Content saved in file_content{% endcomment %}
{{ file_content | log }}
{% endif %}Last updated