in reply to
Re^2: Perl Issue - File downloaded in windows has a Control M character in it??
in thread Perl Issue - File downloaded in windows has a Control M character in it??
And these lines are odd - you join strings with 'join' and '.':
$filedate=join "", $Datetotal."damlbmp_zone.csv";
$url = join "",'http://mis.nyiso.com/public/csv/damlbmp/'.$filedate;
$filename=join "",$DownloadFilePath.$filedate;
You can simply quote them as one:
$filedate = "${Datetotal}damlbmp_zone.csv";
$url = "http://mis.nyiso.com/public/csv/damlbmp/$filedate";
$filename = "${DownloadFilePath}$filedate";