I wrote an FTP client that transfers files from a Win2K box to an AIX
box. I need to 'ascii' mode to get rid of the CRLF right? how do I
do that, what is the syntax.
Here is the portion of the code that does the FTP
$ftp = Net::FTP->new("$Server", Debug => 0);
$ftp->login("mqm","$Pwd",) || die "no login";
$ftp->cwd("/var/mqm/mqsc/stage")|| die "no login";
$ftp->put("C:\\Jobs\\staging\\$File" )|| die "no login";
$ftp->quit;
also I was wondering if it is possible to chmod the file using this
FTP module?
Any help would be appreciated.
Thanks,
John