Help for this page

Select Code to Download


  1. or download this
    use Win32::OLE qw(in with);
    use Win32::OLE::Const 'CuteFTPPro';
    ...
    print "autoclosemethod is currently ", $ftp->Option(AutoCloseMethod), 
    +"!\n";
    $ftp->SetProperty('Option', "AutoCloseMethod", 1);
    print "autoclosemethod is now ", $ftp->Option(AutoCloseMethod), "!\n";
    
  2. or download this
    D:\>perl -w test.pl
    autoclosemethod is currently 0!
    autoclosemethod is now 1!