{%
if State == 'New' then
echo('Downloading...')
end
if State == 'Exception' or State == 'Killed' or State == 'Cancelled' then
echo('Download System Com data failed.')
end
if State == 'Completed' then
echo('Download System Com data to ' .. file_path .. ' successfully.')
end
%}