in reply to using a set variable in system or exec

You could try building up the command string as follows
my $cmd = join('', 'rm /storage/filename', $date, '_more_filename.csv' +); system ($cmd);
HTH