ok, this will create a file with the name I want it too, but it is in the directory that the perl script is in:
($ss, $mm, $hh, $DD, $MM, $YYYY, $wday, $yday, $isdst) = localtime(time);
$Year = $YYYY + 1900;
$Month = $MM + 1;
open( OUTFILE, ">csch $Year $Month $DD.csv") or die...